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

TcxVirtualVerticalGrid.OnFocusedRecordChanged Event

In This Article

Fires after the focused record has been changed.

#Declaration

Delphi
property OnFocusedRecordChanged: TcxVerticalGridFocusedRecordChangedEvent read; write;

#Remarks

Implement the OnFocusedRecordChanged event handler to provide custom code after focus has switched to another record.

The Sender parameter specifies the vertical grid control that generated this event.

The APrevFocusedRecord parameter specifies the record that has lost focus. This parameter returns -1 value if there was no focused record before.

The AFocusedRecord parameter specifies the record that has gained focus.

See Also