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.FocusedRecordCellChanged Event

Fires in response to cell focus changing from one cell to another in a record if the previously and currently focused cells have different indexes.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#Declaration

public event IndexChangedEventHandler FocusedRecordCellChanged

#Event Data

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

Property Description
NewIndex Gets the index of the currently focused element.
OldIndex Gets the index of the previously focused element.

#Remarks

The FocusedRecordCellChanged event is raised when end-users move focus from one cell to another in a multi-editor row or in response to changing the VGridControlBase.FocusedRecordCellIndex property’s value. This event isn’t raised if the previously and currently focused cells have the same index.

The event parameter’s IndexChangedEventArgs.NewIndex and IndexChangedEventArgs.OldIndex properties identify the currently and previously focused cells, respectively.

See Also