TcxCustomVerticalGrid.OnTopRowIndexChanged Event
In This Article
Allows you to track vertical scrolling of grid rows.
#Declaration
Delphi
property OnTopRowIndexChanged: TNotifyEvent read; write;
#Remarks
The OnTopRowIndexChanged event is fired when the grid is displayed in single record view (see LayoutStyle) to notify you about vertical scrolling of grid rows.
The Sender parameter represents a vertical grid control that initiated the event.
You can determine the index of the top visible row using the TopVisibleRowIndex property.
See Also