WmfPlaceableFileHeader.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // System.Drawing.Imaging.WmfPlaceableFileHeader.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 WmfPlaceableFileHeader {
  12. // constructors
  13. //[MonoTODO]
  14. public WmfPlaceableFileHeader() {
  15. throw new NotImplementedException ();
  16. }
  17. // properties
  18. //[MonoTODO]
  19. public short BboxBottom {
  20. get { throw new NotImplementedException (); }
  21. set { throw new NotImplementedException (); }
  22. }
  23. //[MonoTODO]
  24. public short BboxLeft {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. //[MonoTODO]
  29. public short BboxRight {
  30. get { throw new NotImplementedException (); }
  31. set { throw new NotImplementedException (); }
  32. }
  33. //[MonoTODO]
  34. public short BboxTop {
  35. get { throw new NotImplementedException (); }
  36. set { throw new NotImplementedException (); }
  37. }
  38. //[MonoTODO]
  39. public short Checksum {
  40. get { throw new NotImplementedException (); }
  41. set { throw new NotImplementedException (); }
  42. }
  43. //[MonoTODO]
  44. public short Hmf {
  45. get { throw new NotImplementedException (); }
  46. set { throw new NotImplementedException (); }
  47. }
  48. //[MonoTODO]
  49. public short Inch {
  50. get { throw new NotImplementedException (); }
  51. set { throw new NotImplementedException (); }
  52. }
  53. //[MonoTODO]
  54. public int Key {
  55. get { throw new NotImplementedException (); }
  56. set { throw new NotImplementedException (); }
  57. }
  58. //[MonoTODO]
  59. public int Reserved {
  60. get { throw new NotImplementedException (); }
  61. set { throw new NotImplementedException (); }
  62. }
  63. //[MonoTODO]
  64. public int Id {
  65. get { throw new NotImplementedException (); }
  66. set { throw new NotImplementedException (); }
  67. }
  68. }
  69. }