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

TcxCustomVerticalGrid.OnLeftVisibleRecordIndexChanged Event

In This Article

Allows you to track the horizontal scrolling of grid rows.

#Declaration

Delphi
property OnLeftVisibleRecordIndexChanged: TNotifyEvent read; write;

#Remarks

The OnLeftVisibleRecordIndexChanged event is fired if the grid is displayed in bands view (see LayoutStyle) to notify you about horizontal scrolling of grid rows. The scrolling only occurs if the width of the vertical grid control is insufficient to display all its rows.

The Sender parameter specifies the vertical grid control that initiated the event.

You can determine the index of the top visible row via the TopVisibleRowIndex property.

Additionally, you can track the horizontal scrolling of grid bands using the OnLeftVisibleBandIndexChanged event.

See Also