public string GetClassName()
 {
     return(TypeDescriptorHelper.GetClassName(this));
 }
 public object GetPropertyOwner(PropertyDescriptor pd)
 {
     return(TypeDescriptorHelper.GetPropertyOwner(this, pd));
 }
 public AttributeCollection GetAttributes()
 {
     return(TypeDescriptorHelper.GetAttributes(this));
 }
 public PropertyDescriptorCollection GetProperties()
 {
     return(TypeDescriptorHelper.GetProperties(this));
 }
 public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
 {
     return(TypeDescriptorHelper.GetProperties(this, attributes));
 }
 public EventDescriptorCollection GetEvents()
 {
     return(TypeDescriptorHelper.GetEvents(this));
 }
 public EventDescriptorCollection GetEvents(Attribute[] attributes)
 {
     return(TypeDescriptorHelper.GetEvents(this, attributes));
 }
 public object GetEditor(Type editorBaseType)
 {
     return(TypeDescriptorHelper.GetEditor(this, editorBaseType));
 }
 public PropertyDescriptor GetDefaultProperty()
 {
     return(TypeDescriptorHelper.GetDefaultProperty(this));
 }
 public EventDescriptor GetDefaultEvent()
 {
     return(TypeDescriptorHelper.GetDefaultEvent(this));
 }
 public TypeConverter GetConverter()
 {
     return(TypeDescriptorHelper.GetConverter(this));
 }
 public string GetComponentName()
 {
     return(TypeDescriptorHelper.GetComponentName(this));
 }