Class EditorNeededEventArgs
Represents event arguments for the EditorNeeded event.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class EditorNeededEventArgs : EventArgs
Constructors
EditorNeededEventArgs()
Declaration
public EditorNeededEventArgs()
Properties
ColumnIndex
Gets the index of the cell's column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
Editor
Gets or sets the editor that will be used for editing a particular cell.
Declaration
public FrameworkElement Editor { get; set; }
Property Value
System.Windows.FrameworkElement
The editor. |
EditorProperty
Gets or sets the editor's editable dependency property.
Declaration
public DependencyProperty EditorProperty { get; set; }
Property Value
System.Windows.DependencyProperty
The editor property. |
RowIndex
Gets the index of the cell's row.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
TextInput
Gets the string containing the entered text when the TextInput event occurs.
Declaration
public string TextInput { get; }
Property Value
System.String
|