PreviewPageInfo.cs 648 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // System.Drawing.PreviewPageInfo.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. {
  12. /// <summary>
  13. /// Summary description for PreviewPageInfo.
  14. /// </summary>
  15. public sealed class PreviewPageInfo {
  16. //Image image;
  17. //Size physicalSize;
  18. //public PreviewPageInfo(Image image, Size physicalSize) {
  19. // this.image = image;
  20. // this.physicalSize = physicalSize;
  21. //}
  22. //public Image Image {
  23. // get{
  24. // return image;
  25. // }
  26. //}
  27. //public Size PhysicalSize{
  28. // get{
  29. // return physicalSize;
  30. // }
  31. //}
  32. }
  33. }