2
0

PaperUnitConvert.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Drawing.PaperUnitConvert.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 PaperUnitConvert.
  14. /// </summary>
  15. public sealed class PaperUnitConvert
  16. {
  17. // [MonoTODO]
  18. // public static double Convert(double value, PrinterUint frmUnit, PrinterUnit toUnit){
  19. // throw new NotImplementedException ();
  20. // }
  21. // [MonoTODO]
  22. // public static int Convert(int value, PrinterUint frmUnit, PrinterUnit toUnit){
  23. // throw new NotImplementedException ();
  24. // }
  25. // [MonoTODO]
  26. // public static Margins Convert(Margins value, PrinterUint frmUnit, PrinterUnit toUnit){
  27. // throw new NotImplementedException ();
  28. // }
  29. // [MonoTODO]
  30. // public static Point Convert(Point value, PrinterUint frmUnit, PrinterUnit toUnit){
  31. // throw new NotImplementedException ();
  32. // }
  33. // [MonoTODO]
  34. // public static Rectangle Convert(Rectangle value, PrinterUint frmUnit, PrinterUnit toUnit){
  35. // throw new NotImplementedException ();
  36. // }
  37. // [MonoTODO]
  38. // public static Size Convert(Size value, PrinterUint frmUnit, PrinterUnit toUnit){
  39. // throw new NotImplementedException ();
  40. // }
  41. }
  42. }