Class DataGridCellValueChangedEventArgs
Provides the data for CellValueChanged event.
Inheritance
System.Object
DataGridCellValueChangedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellValueChangedEventArgs : EventArgs
Constructors
DataGridCellValueChangedEventArgs(DataGridColumn, RowColumnIndex, Object, Object, Object)
Initializes a new instance of the DataGridCellValueChangedEventArgs class
Declaration
public DataGridCellValueChangedEventArgs(DataGridColumn column, RowColumnIndex rowColumnIndex, object rowData, object newValue, object cellValue)
Parameters
Type | Name | Description |
---|---|---|
DataGridColumn | column | |
RowColumnIndex | rowColumnIndex | |
System.Object | rowData | |
System.Object | newValue | |
System.Object | cellValue |
Properties
CellValue
Gets the existing value of the cell before it gets changed.
Declaration
public object CellValue { get; }
Property Value
Type |
---|
System.Object |
Column
Gets the corresponding DataGridColumn of cell.
Declaration
public DataGridColumn Column { get; }
Property Value
Type |
---|
DataGridColumn |
NewValue
Gets the newly updated value of the cell.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
RowColumnIndex
Gets the row and column coordinates of corresponding cell.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type |
---|
RowColumnIndex |
RowData
Gets the corresponding underlying row data of the cell.
Declaration
public object RowData { get; }
Property Value
Type |
---|
System.Object |