| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Drawing.PaperUnitConvert.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PaperUnitConvert.
- /// </summary>
- public sealed class PaperUnitConvert
- {
- // [MonoTODO]
- // public static double Convert(double value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public static int Convert(int value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public static Margins Convert(Margins value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public static Point Convert(Point value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public static Rectangle Convert(Rectangle value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public static Size Convert(Size value, PrinterUint frmUnit, PrinterUnit toUnit){
- // throw new NotImplementedException ();
- // }
- }
- }
|