| 12345678910111213141516 |
- //
- // System.Drawing.Duplex.cs
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Printing
- {
- public enum Duplex {
- Default = -1,
- Horizontal = 3,
- Simplex = 1,
- Vertical = 2
- }
- }
|