Class GridViewCellEditEndedEventArgs
Contains info needed to handle CellEditEndedEvent.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCellEditEndedEventArgs : RadRoutedEventArgs
Constructors
GridViewCellEditEndedEventArgs(GridViewCell, Object, Object, RoutedEvent)
Initializes a new instance of the GridViewCellEditEndedEventArgs class.
Declaration
public GridViewCellEditEndedEventArgs(GridViewCell cell, object newData, object oldData, RoutedEvent routedEvent)
Parameters
GridViewCell
cell
The cell. |
System.Object
newData
The new data. |
System.Object
oldData
The old data. |
RoutedEvent
routedEvent
The routed event. |
Properties
Cell
Gets or sets the edited cell.
Declaration
public GridViewCell Cell { get; }
Property Value
GridViewCell
The cell. |
EditAction
Gets or sets the edit action.
Declaration
public GridViewEditAction EditAction { get; }
Property Value
GridViewEditAction
The edit action. |
EditingElement
Gets or sets the editor element.
Declaration
public object EditingElement { get; }
Property Value
System.Object
The editor element. |
NewData
Gets or sets the new data.
Declaration
public object NewData { get; }
Property Value
System.Object
The new data. |
OldData
Gets or sets the old data.
Declaration
public object OldData { get; }
Property Value
System.Object
The old data. |