|
|
@@ -0,0 +1,62 @@
|
|
|
+//
|
|
|
+// System.Drawing.Printing.PrinterUnitConvert
|
|
|
+//
|
|
|
+// Authors:
|
|
|
+// Martin Willemoes Hansen ([email protected])
|
|
|
+//
|
|
|
+// (C) 2003 Martin Willemoes Hansen
|
|
|
+//
|
|
|
+
|
|
|
+namespace System.Drawing.Printing
|
|
|
+{
|
|
|
+ public sealed class PrinterUnitConvert
|
|
|
+ {
|
|
|
+ [MonoTODO]
|
|
|
+ public static double Convert (double value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public static int Convert (int value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public static Margins Convert (Margins value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public static Point Convert (Point value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public static Rectangle Convert (Rectangle value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public static Size Convert (Size value,
|
|
|
+ PrinterUnit fromUnit,
|
|
|
+ PrinterUnit toUnit)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|