Class EditorAttribute
Attribute for specifying a custom editor for a particular property.
Inheritance
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class EditorAttribute : Attribute
Constructors
EditorAttribute(Type)
Initializes a new instance of the EditorAttribute class.
Declaration
public EditorAttribute(Type editorType)
Parameters
System.Type
editorType
The type of the custom editor. |
EditorAttribute(Type, String)
Initializes a new instance of the EditorAttribute class.
Declaration
public EditorAttribute(Type editorType, string targetProperty)
Parameters
System.Type
editorType
The type of the custom editor. |
System.String
targetProperty
The property of the custom editor that should be used for binding. |
EditorAttribute(Type, String, EditorStyle)
Initializes a new instance of the EditorAttribute class.
Declaration
public EditorAttribute(Type editorType, string targetProperty, EditorStyle editorStyle)
Parameters
System.Type
editorType
The type of the custom editor. |
System.String
targetProperty
The property of the custom editor that should be used for binding. |
EditorStyle
editorStyle
The style of the UI component used for hosting the custom editor. |
EditorAttribute(Type, EditorStyle)
Initializes a new instance of the EditorAttribute class.
Declaration
public EditorAttribute(Type editorType, EditorStyle editorStyle)
Parameters
System.Type
editorType
The type of the custom editor. |
EditorStyle
editorStyle
The style of the UI component used for hosting the custom editor. |
Properties
EditorStyle
Gets the style of the UI component used for hosting the custom editor.
Declaration
public EditorStyle EditorStyle { get; }
Property Value
EditorStyle
|
EditorType
Gets the type of the custom editor.
Declaration
public Type EditorType { get; }
Property Value
System.Type
|
TargetProperty
Gets the property of the custom editor that should be used for binding.
Declaration
public string TargetProperty { get; }
Property Value
System.String
|