Description
This abstract class derives from System.ComponentModelClasses.PropertyDescriptor and provides some of the basic PropertyDescriptor functionality. Your derived class will need to provide implementation for SetValue() and GetValue(). Your constructor must also provide the name of the property to the baseclass constructor. This name will be used as a resource id/key.
The DisplayName property will use this as a key to locate the corresponding localized string within the resource file.
Class Hierarchy
Autodesk.AutoCAD.ComponentModel.PropertyDescriptorBase
Visual Basic
Public abstract Class PropertyDescriptorBase(Of TComponent, TPropertyValue) Inherits PropertyDescriptor
C#
public abstract class PropertyDescriptorBase<TComponent, TPropertyValue> : PropertyDescriptor;
Links
PropertyDescriptorBase Constructor, PropertyDescriptorBase Methods, PropertyDescriptorBase Properties