Class EditorRequiredEventArgs
Provides information about the type of the editor required by the GridTableViewManager when instantiating the requested type of column.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class EditorRequiredEventArgs : EventArgs
Constructors
EditorRequiredEventArgs()
Initializes EditorRequiredEventArgs with editor type defined.
Declaration
public EditorRequiredEventArgs()
EditorRequiredEventArgs(Type)
Initializes EditorRequiredEventArgs setting the required editor type.
Declaration
public EditorRequiredEventArgs(Type editorType)
Parameters
System.Type
editorType
The type of the editor required. |
Properties
Editor
Gets or sets the ICellEditor instance if created outside the GridViewEditorManager. Also if a default editor is provided by the RadGridView, it is available for post-initialization or substitution.
Declaration
public IValueEditor Editor { get; set; }
Property Value
IValueEditor
|
EditorType
Gets or sets the type of the editor required by the edited control if no default editor is available.
Declaration
public Type EditorType { get; set; }
Property Value
System.Type
|