MetafileFrameUnit.cs 363 B

12345678910111213141516171819
  1. //
  2. // System.Drawing.Imaging.MetafileFrameUnit.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Dennis Hayes ([email protected])
  6. //
  7. using System;
  8. namespace System.Drawing.Imaging
  9. {
  10. [Serializable]
  11. public enum MetafileFrameUnit {
  12. Document = 5,
  13. GdiCompatible = 7,
  14. Inch = 4,
  15. Millimeter = 6,
  16. Pixel = 2,
  17. Point = 3
  18. }
  19. }