MetafileHeader.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. // methods
  13. [MonoTODO]
  14. public bool IsDisplay() {
  15. throw new NotImplementedException ();
  16. }
  17. [MonoTODO]
  18. public bool IsEmf() {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public bool IsEmfOrEmfPlus() {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public bool IsEmfPlus() {
  27. throw new NotImplementedException ();
  28. }
  29. [MonoTODO]
  30. public bool IsEmfPlusDual() {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. public bool IsEmfPlusOnly() {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public bool IsWmf() {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public bool IsWmfPlaceable() {
  43. throw new NotImplementedException ();
  44. }
  45. // properties
  46. [MonoTODO]
  47. public Rectangle Bounds {
  48. get { throw new NotImplementedException (); }
  49. }
  50. [MonoTODO]
  51. public float DpiX {
  52. get { throw new NotImplementedException (); }
  53. }
  54. [MonoTODO]
  55. public float DpiY {
  56. get { throw new NotImplementedException (); }
  57. }
  58. [MonoTODO]
  59. public int EmfPlusHeaderSize {
  60. get { throw new NotImplementedException (); }
  61. }
  62. [MonoTODO]
  63. public int LogicalDpiX {
  64. get { throw new NotImplementedException (); }
  65. }
  66. [MonoTODO]
  67. public int LogicalDpiY {
  68. get { throw new NotImplementedException (); }
  69. }
  70. [MonoTODO]
  71. public int MetafileSize {
  72. get { throw new NotImplementedException (); }
  73. }
  74. [MonoTODO]
  75. public MetafileType Type {
  76. get { throw new NotImplementedException (); }
  77. }
  78. [MonoTODO]
  79. public int Version {
  80. get { throw new NotImplementedException (); }
  81. }
  82. [MonoTODO]
  83. public MetaHeader WmfHeader {
  84. get { throw new NotImplementedException (); }
  85. }
  86. }
  87. }