Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridControlBase.CellValueChanging Event

Fires in response to changing the edit value.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

#Declaration

public event CellValueChangedEventHandler CellValueChanging

#Event Data

The CellValueChanging event's data class is CellValueChangedEventArgs. The following properties provide information specific to this event:

Property Description
CellIndex Gets the processed cell’s index. Inherited from RowCellEventArgs.
RecordIndex Gets the index of the record containing the processed cell. Inherited from RowCellEventArgs.
Row Gets the processed row. Inherited from RowEventArgs.
Value Gets the current cell’s value.

#Remarks

The CellValueChanging event is raised each time the edited value is being changed (a user types or deletes a character, chooses a value from the dropdown list, etc.). This event parameter’s properties identify the row and record that contain the edited cell and its current value.

Note

The CellValueChanging event doesn’t fire when changing cell values in code. Handle this event if you need to provide an immediate response to end-user actions.

See Also