| 12345678910111213141516 |
- //
- // System.Drawing.PrinterUnit.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Printing
- {
- public enum PrinterUnit {
- Display = 0,
- HundredthsOfAMillimeter = 2,
- TenthsOfAMillimeter = 3,
- ThousandthsOfAnInch = 1
- }
- }
|