| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // 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();
- }
- }
- }
|