CellValueChangedEventArgs(Int32, GridColumn, Object, Object) Constructor
Initializes a new instance of the CellValueChangedEventArgs class with specified settings.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v24.2.dll
Declaration
public CellValueChangedEventArgs(
int rowHandle,
GridColumn column,
object value,
object oldValue = null
)
Parameters
Name | Type | Description |
---|---|---|
rowHandle | Int32 | An integer value that specifies the handle of the row where the cell resides. This value is assigned to the RowHandle property. |
column | GridColumn | The column where the cell resides. This value is assigned to the Column property. |
value | Object | The new cell value. This value is assigned to the Value property. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
oldValue | Object | null | The previous cell value. This value is assigned to the OldValue property. |
See Also