Class DataGridCurrentCellEndEditEventArgs
Provides data for CurrentCellEndEdit event.
Inheritance
System.Object
DataGridCurrentCellEndEditEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCurrentCellEndEditEventArgs : CancelEventArgs
Constructors
DataGridCurrentCellEndEditEventArgs(Object)
Initializes a new instance of the
Declaration
public DataGridCurrentCellEndEditEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The original source that triggers the event. |
Properties
Handled
ToDo
Declaration
public bool Handled { get; }
Property Value
Type |
---|
System.Boolean |
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. |