PrinterResolutionKind.cs 322 B

1234567891011121314151617
  1. //
  2. // System.Drawing.PrinterResolutionKind.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.Printing
  9. {
  10. public enum PrinterResolutionKind {
  11. Custom = 0,
  12. Draft = -1,
  13. High = -4,
  14. Low = -2,
  15. Medium = -3
  16. }
  17. }