| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.ComponentModel.ExpandableObjectConverter.cs
- //
- // Authors:
- // Tim Coleman ([email protected])
- // Andreas Nahr ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- // (C) 2003 Andreas Nahr
- //
- using System;
- namespace System.ComponentModel
- {
- public class ExpandableObjectConverter : TypeConverter
- {
- public ExpandableObjectConverter ()
- {
- }
- public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
- object value, Attribute[] attributes)
- {
- return TypeDescriptor.GetProperties (value, attributes);
- }
- public override bool GetPropertiesSupported (ITypeDescriptorContext context)
- {
- return true;
- }
- }
- }
|