GridControl.CellValueChanged Event
In This Article
Occurs when a cell value is changed.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
public event CellValueChangedEventHandler CellValueChanged
#Event Data
The CellValueChanged event's data class is CellValueChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Old |
Gets an old cell value. |
Row |
Gets the processed row.
Inherited from Row |
Row |
Gets the processed row’s handle.
Inherited from Row |
Source |
Gets the Grid |
#Remarks
The GridControl raises the CellValueChanged event in the following cases:
- A user changes a cell value and closes the in-place editor.
- You use the GridControl.SetCellValue method to change a cell value in code.
The CellValueChanged event does not occur when you change a cell value in a data source.
See Also