Class ValueChangedEventArgs
Provides the data for ValueChanged event.
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(RowColumnIndex, Object, Boolean, GridColumn)
Initializes a new instance of the ValueChangedEventArgs class.
Declaration
public ValueChangedEventArgs(RowColumnIndex rowColIndex, object rowData, bool newValue, GridColumn column)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColIndex | The row column index for the tapped switch. |
System.Object | rowData | The underlying data of the tapped row. |
System.Boolean | newValue | The last given value to the switch |
GridColumn | column | The type of column |
Properties
Column
Gets the Column.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
NewValue
Gets a value indicating whether the value is new value.
Declaration
public bool NewValue { get; }
Property Value
Type |
---|
System.Boolean |
RowColIndex
Gets the RowColumnIndex.
Declaration
public RowColumnIndex RowColIndex { get; }
Property Value
Type |
---|
RowColumnIndex |
RowData
Gets the RowData.
Declaration
public object RowData { get; }
Property Value
Type |
---|
System.Object |