Skip to main content

GridControl.CellValueChanged Event

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
OldValue Gets an old cell value.
Row Gets the processed row. Inherited from RowEventArgs.
RowHandle Gets the processed row’s handle. Inherited from RowEventArgs.
Source Gets the GridControl that raised this event. Inherited from RowEventArgs.

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