New to Telerik UI for WPFStart a free 30-day trial

Represents event arguments for the EditorNeeded event.

Definition

Namespace:Telerik.Windows.Controls.VirtualGrid

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

C#
public class EditorNeededEventArgs : EventArgs

Inheritance: objectEventArgsEditorNeededEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public EditorNeededEventArgs()

Properties

Gets the index of the cell's column.

C#
public int ColumnIndex { get; }

Editor

FrameworkElement

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

C#
public FrameworkElement Editor { get; set; }
Property Value:

The editor.

EditorProperty

DependencyProperty

Gets or sets the editor's editable dependency property.

C#
public DependencyProperty EditorProperty { get; set; }
Property Value:

The editor property.

Gets the index of the cell's row.

C#
public int RowIndex { get; }

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

C#
public string TextInput { get; }