Skip to main content
A newer version of this page is available. .

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.v19.1.dll

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