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

TcxCustomGridTableController.MakeFocusedRecordVisible Method

In This Article

Scrolls the View to make the focused record visible.

#Declaration

Delphi
procedure MakeFocusedRecordVisible;

#Remarks

Use the MakeFocusedRecordVisible method to scroll the View contents to make the focused record visible. The focused record can be obtained from the FocusedRecord property.

To make a specific record visible, see the View’s MakeRecordVisible method.

There are also another methods to scroll the View contents:

  • The Scroll method allows you to simulate user actions with scrollbars

  • The TopRecordIndex property specifies the index of the topmost visible record and this enables scrolling

  • The LeftPos property (available in (Banded) Table Views) allows you scroll horizontally by a specific amount of pixels

These methods do not move focus when scrolling. To move focus to a specific item and record, see the FocusNextItem, FocusNextRecord methods and TcxCustomGridTableItem.Focused , TcxCustomGridRecord.Focused properties, for instance.

See Also