Class GridCurrentCellEndEditEventArgs
Provides data for CurrentCellEndEdit event.
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridCurrentCellEndEditEventArgs : GridCancelEventArgs
Constructors
GridCurrentCellEndEditEventArgs(Object)
Initializes a new instance of the GridCurrentCellEndEditEventArgs class.
Declaration
public GridCurrentCellEndEditEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The original source that triggers the event. |
Properties
NewValue
Gets the new cell value of the edited cell.
Declaration
public object NewValue { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents new cell value of edited cell. |
OldValue
Gets the old cell value of the edited cell.
Declaration
public object OldValue { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents old cell value of edited cell. |
RowColumnIndex
Gets the RowColumnIndex of the current cell in which editing is ended.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The corresponding RowColumnIndex of the current cell in which editing is ended. |