Class
EditorNeededEventArgs

Represents event arguments for the EditorNeeded event.

Definition

Namespace:Telerik.Windows.Controls.VirtualGrid

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

cs-api-definition
public class EditorNeededEventArgs : EventArgs

Inheritance: objectEventArgsEditorNeededEventArgs

Inherited Members EventArgs.Empty

Constructors

EditorNeededEventArgs()

Declaration

cs-api-definition
public EditorNeededEventArgs()

Properties

ColumnIndex

Gets the index of the cell's column.

Declaration

cs-api-definition
public int ColumnIndex { get; }

Property Value

int

Editor

Gets or sets the editor that will be used for editing a particular cell.

Declaration

cs-api-definition
public FrameworkElement Editor { get; set; }

Property Value

FrameworkElement

The editor.

EditorProperty

Gets or sets the editor's editable dependency property.

Declaration

cs-api-definition
public DependencyProperty EditorProperty { get; set; }

Property Value

DependencyProperty

The editor property.

RowIndex

Gets the index of the cell's row.

Declaration

cs-api-definition
public int RowIndex { get; }

Property Value

int

TextInput

Gets the string containing the entered text when the TextInput event occurs.

Declaration

cs-api-definition
public string TextInput { get; }

Property Value

string