| 123456789101112131415 |
- //
- // System.Drawing.PrintRange.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Printing
- {
- public enum PrintRange {
- AllPages = 0,
- Selection = 1,
- SomePages = 2
- }
- }
|