2
0

PrinterResolution.cs 617 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // System.Drawing.PrinterResolution.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing {
  11. /// <summary>
  12. /// Summary description for PrinterResolution.
  13. /// </summary>
  14. public class PrinterResolution {
  15. public PrinterResolutionKind kind;
  16. public int x;
  17. public int y;
  18. public PrinterResolution(){
  19. x = -1;
  20. y = -1;
  21. }
  22. public int X{
  23. get{
  24. return x;
  25. }
  26. }
  27. public int Y{
  28. get{
  29. return y;
  30. }
  31. }
  32. // public int Kind{
  33. // get{
  34. // return kind;
  35. // }
  36. // }
  37. }
  38. }