| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // System.Drawing.Printing.PrinterResolution.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002 Ximian, Inc
- // (C) 2003 Andreas Nahr
- //
- using System;
- namespace System.Drawing.Printing
- {
- public class PrinterResolution
- {
- private PrinterResolutionKind kind;
- private int x;
- private int y;
- private PrinterResolution ()
- {
- }
- internal PrinterResolution (int x, int y, PrinterResolutionKind kind)
- {
- this.x = x;
- this.y = y;
- this.kind = kind;
- }
- public int X {
- get {
- return x;
- }
- }
- public int Y {
- get {
- return y;
- }
- }
- public PrinterResolutionKind Kind {
- get {
- return kind;
- }
- }
- }
- }
|