2
0

PrinterUnitConvert.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.Drawing.Printing.PrinterUnitConvert
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.Drawing.Printing
  10. {
  11. public sealed class PrinterUnitConvert
  12. {
  13. [MonoTODO]
  14. public static double Convert (double value,
  15. PrinterUnit fromUnit,
  16. PrinterUnit toUnit)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. [MonoTODO]
  21. public static int Convert (int value,
  22. PrinterUnit fromUnit,
  23. PrinterUnit toUnit)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO]
  28. public static Margins Convert (Margins value,
  29. PrinterUnit fromUnit,
  30. PrinterUnit toUnit)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. [MonoTODO]
  35. public static Point Convert (Point value,
  36. PrinterUnit fromUnit,
  37. PrinterUnit toUnit)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO]
  42. public static Rectangle Convert (Rectangle value,
  43. PrinterUnit fromUnit,
  44. PrinterUnit toUnit)
  45. {
  46. throw new NotImplementedException();
  47. }
  48. [MonoTODO]
  49. public static Size Convert (Size value,
  50. PrinterUnit fromUnit,
  51. PrinterUnit toUnit)
  52. {
  53. throw new NotImplementedException();
  54. }
  55. }
  56. }