Class ValueChangedEventArgs
Provides the data for ValueChanged event.
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(RowColumnIndex, Object, Object, GridColumn, Object)
Initializes a new instance of the ValueChangedEventArgs class.
Declaration
public ValueChangedEventArgs(RowColumnIndex rowColumnIndex, object rowData, object newValue, GridColumn column, object cellValue)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColumnIndex | The row column index of the cell for which value changed. |
System.Object | rowData | The underlying data of the tapped row. |
System.Object | newValue | The current value set to the cell. |
GridColumn | column | The type of column. |
System.Object | cellValue | The old value of the cell. |
Properties
CellValue
Gets the record of the corresponding cell for which value changes occur.
Declaration
public object CellValue { get; }
Property Value
Type |
---|
System.Object |
Column
Gets the Column.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
NewValue
Gets the new cell value indicating whether the value is new value.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
RowColumnIndex
Gets the RowColumnIndex.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type |
---|
RowColumnIndex |
RowData
Gets the RowData.
Declaration
public object RowData { get; }
Property Value
Type |
---|
System.Object |