MetafileHeader.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. //
  2. // System.Drawing.Imaging.MetafileHeader.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. namespace System.Drawing.Imaging {
  11. public sealed class MetafileHeader
  12. {
  13. //constructor
  14. internal MetafileHeader()
  15. {
  16. //Nothing to be done here
  17. }
  18. // methods
  19. [MonoTODO]
  20. public bool IsDisplay() {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public bool IsEmf() {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public bool IsEmfOrEmfPlus() {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public bool IsEmfPlus() {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public bool IsEmfPlusDual() {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. public bool IsEmfPlusOnly() {
  41. throw new NotImplementedException ();
  42. }
  43. [MonoTODO]
  44. public bool IsWmf() {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public bool IsWmfPlaceable() {
  49. throw new NotImplementedException ();
  50. }
  51. // properties
  52. [MonoTODO]
  53. public Rectangle Bounds {
  54. get { throw new NotImplementedException (); }
  55. }
  56. [MonoTODO]
  57. public float DpiX {
  58. get { throw new NotImplementedException (); }
  59. }
  60. [MonoTODO]
  61. public float DpiY {
  62. get { throw new NotImplementedException (); }
  63. }
  64. [MonoTODO]
  65. public int EmfPlusHeaderSize {
  66. get { throw new NotImplementedException (); }
  67. }
  68. [MonoTODO]
  69. public int LogicalDpiX {
  70. get { throw new NotImplementedException (); }
  71. }
  72. [MonoTODO]
  73. public int LogicalDpiY {
  74. get { throw new NotImplementedException (); }
  75. }
  76. [MonoTODO]
  77. public int MetafileSize {
  78. get { throw new NotImplementedException (); }
  79. }
  80. [MonoTODO]
  81. public MetafileType Type {
  82. get { throw new NotImplementedException (); }
  83. }
  84. [MonoTODO]
  85. public int Version {
  86. get { throw new NotImplementedException (); }
  87. }
  88. [MonoTODO]
  89. public MetaHeader WmfHeader {
  90. get { throw new NotImplementedException (); }
  91. }
  92. }
  93. }