TcxCustomGridTableView.OnFocusedRecordChanged Event
Allows you to respond to navigation between records.
Declaration
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