Class CellEditEndedEventArgs
Contains info needed to handle CellEditEnded event.
Inheritance
System.Object
CellEditEndedEventArgs
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class CellEditEndedEventArgs : EventArgs
Constructors
CellEditEndedEventArgs()
Declaration
public CellEditEndedEventArgs()
Properties
ColumnIndex
Gets or sets the index of the column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
EditAction
Gets or sets the edit action.
Declaration
public VirtualGridEditAction EditAction { get; }
Property Value
VirtualGridEditAction
The edit action. |
RowIndex
Gets or sets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
Value
Gets or sets the value.
Declaration
public object Value { get; set; }
Property Value
System.Object
|