Duplex.cs 288 B

12345678910111213141516
  1. //
  2. // System.Drawing.Duplex.cs
  3. //
  4. // (C) 2001 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 Duplex {
  11. Default = -1,
  12. Horizontal = 3,
  13. Simplex = 1,
  14. Vertical = 2
  15. }
  16. }