Class CellEditEndedEventArgs
Contains info needed to handle CellEditEnded event.
Inheritance
System.Object
System.EventArgs
CellEditEndedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
|