MarginsConverter.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // System.Drawing.MarginsConverter.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing {
  11. /// <summary>
  12. /// Summary description for MarginsConverter.
  13. /// </summary>
  14. public class MarginsConverter {//: ExpandableObjectConverter {
  15. public MarginsConverter() {
  16. }
  17. #region Methods
  18. // [MonoTODO]
  19. // public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType) {
  20. // throw new NotImplementedException ();
  21. // }
  22. //
  23. // [MonoTODO]
  24. // public override bool CanConvertTo(ITypeDescriptorContext context,Type destinationType) {
  25. // throw new NotImplementedException ();
  26. // }
  27. //
  28. // [MonoTODO]
  29. // public override object ConvertFrom(ITypeDescriptorContext context,CultureInfo culture,object value) {
  30. // throw new NotImplementedException ();
  31. // }
  32. //
  33. // [MonoTODO]
  34. // public override object ConvertTo(ITypeDescriptorContext context,CultureInfo culture,object value,Type destinationType) {
  35. // throw new NotImplementedException ();
  36. // }
  37. //
  38. // [MonoTODO]
  39. // public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
  40. // throw new NotImplementedException ();
  41. // }
  42. //
  43. // [MonoTODO]
  44. // public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
  45. // throw new NotImplementedException ();
  46. // }
  47. #endregion
  48. }
  49. }