| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.Drawing.MarginsConverter.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing {
- /// <summary>
- /// Summary description for MarginsConverter.
- /// </summary>
- public class MarginsConverter {//: ExpandableObjectConverter {
- public MarginsConverter() {
- }
- #region Methods
- // [MonoTODO]
- // public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType) {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public override bool CanConvertTo(ITypeDescriptorContext context,Type destinationType) {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public override object ConvertFrom(ITypeDescriptorContext context,CultureInfo culture,object value) {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public override object ConvertTo(ITypeDescriptorContext context,CultureInfo culture,object value,Type destinationType) {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
- // throw new NotImplementedException ();
- // }
- #endregion
- }
- }
|