PageSettings.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //
  2. // System.Drawing.PageSettings.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing
  11. {
  12. /// <summary>
  13. /// Summary description for PageSettings.
  14. /// </summary>
  15. public class PageSettings {//: IClonable
  16. //[MonoTODO]
  17. public PageSettings()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. //props
  22. //[MonoTODO]
  23. // public Rectangle Bounds{
  24. // get{
  25. // throw new NotImplementedException ();
  26. // }
  27. // set{
  28. // throw new NotImplementedException ();
  29. // }
  30. // }
  31. [MonoTODO]
  32. public bool Color{
  33. get{
  34. throw new NotImplementedException ();
  35. }
  36. set{
  37. throw new NotImplementedException ();
  38. }
  39. }
  40. [MonoTODO]
  41. public bool Landscape {
  42. get{
  43. throw new NotImplementedException ();
  44. }
  45. set{
  46. throw new NotImplementedException ();
  47. }
  48. }
  49. [MonoTODO]
  50. public Margins Margins{
  51. get{
  52. throw new NotImplementedException ();
  53. }
  54. set{
  55. throw new NotImplementedException ();
  56. }
  57. }
  58. [MonoTODO]
  59. public PaperSize PaperSize{
  60. get{
  61. throw new NotImplementedException ();
  62. }
  63. set{
  64. throw new NotImplementedException ();
  65. }
  66. }
  67. [MonoTODO]
  68. public PaperSource PaperSource{
  69. get{
  70. throw new NotImplementedException ();
  71. }
  72. set{
  73. throw new NotImplementedException ();
  74. }
  75. }
  76. [MonoTODO]
  77. public PrinterResolution PrinterResolution{
  78. get{
  79. throw new NotImplementedException ();
  80. }
  81. set{
  82. throw new NotImplementedException ();
  83. }
  84. }
  85. //[MonoTODO]
  86. // public PrinterSetting PrinterSetting{
  87. // get{
  88. // throw new NotImplementedException ();
  89. // }
  90. // set{
  91. // throw new NotImplementedException ();
  92. // }
  93. // }
  94. //[ComVisible(false)]
  95. [MonoTODO]
  96. public object Clone(){
  97. throw new NotImplementedException ();
  98. }
  99. //[ComVisible(false)]
  100. [MonoTODO]
  101. public void CopyToHdevmode(IntPtr hdevmode){
  102. throw new NotImplementedException ();
  103. }
  104. //[ComVisible(false)]
  105. [MonoTODO]
  106. public void SetHdevmode(IntPtr hdevmode){
  107. throw new NotImplementedException ();
  108. }
  109. //[ComVisible(false)]
  110. [MonoTODO]
  111. public override string ToString(){
  112. //FIXME: //THIS is wrong! This method is to be overridden!
  113. return base.ToString();
  114. }
  115. }
  116. }