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

TcxCustomGridTableView.OnFocusedRecordChanged Event

Allows you to respond to navigation between records.

#Declaration

Delphi
property OnFocusedRecordChanged: TcxGridFocusedRecordChangedEvent read; write;

#Remarks

Handle the OnFocusedRecordChanged event to execute custom code when a record receives focus.

#Event Occurrence

The OnFocusedRecordChanged event occurs every time focus moves between records.

#Event Parameters

The Sender parameter provides access to the grid View that raised the OnFocusedRecordChanged event. APrevFocusedRecord and AFocusedRecord parameters allow you to identify the previously and currently focused records.

Refer to the TcxGridFocusedRecordChangedEvent procedural type description for detailed information on parameters accessible within an OnFocusedRecordChanged event handler.

See Also