Method | Description | |
---|---|---|
TryCreateEditor ( |
Attempts to create a property editor for the given edited data type from the given editor type.
|
Method | Description | |
---|---|---|
CanEdit ( |
Returns true if the given dataType matches the given propertyType. If the dataType is generic and the propertyType is a generic definition, then the propertyType will be instantiated with the same generic arguments as dataType.
|
|
TryCreateInstance ( |
Creates a new instance of the given editorType. It is assumed that editorType extends IPropertyEditor.
|
|
TryCreateSpecificEditor ( |
Attempt to create a new IPropertyEditor instance.
|
public static TryCreateEditor ( |
||
editedType | The type that is being edited. | |
editorType | The editor type. | |
attributes | ICustomAttributeProvider | /// The attributes that were specified for the type. /// |
forceInherit | bool | /// Should inheritance behavior be forced? The expected value is false. /// |
return | IPropertyEditor |