TcxGridFocusedViewChangedEvent Type
In This Article
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 | Tcx |
Provides access to the Data Grid control that raised the focus movement notification event. |
APrev |
Tcx |
Returns the grid View that had focus before the change. |
AFocused |
Tcx |
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