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

TcxGridFocusedViewChangedEvent Type

The procedural type for events that notify an application about focus movements between grid Views.

#Declaration

Delphi
TcxGridFocusedViewChangedEvent = procedure(Sender: TcxCustomGrid; APrevFocusedView: TcxCustomGridView; AFocusedView: TcxCustomGridView) of object;

#Parameters

Name Type Description
Sender TcxCustomGrid

Provides access to the Data Grid control that raised the focus movement notification event.

APrevFocusedView TcxCustomGridView

Returns the grid View that had focus before the change.

AFocusedView TcxCustomGridView

Returns the grid View that accepted focus after the change.

#Remarks

A Data Grid control’s OnFocusedViewChanged event references the TcxGridFocusedViewChangedEvent procedural type.

See Also