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

TcxCustomGrid.TabStop Property

Determines whether the end-user can tab to a grid control.

#Declaration

Delphi
property TabStop: Boolean read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

The TabStop property allows you to specify whether a user can focus the current grid control using the Tab key. If True, the grid control is in the tab order and the user can press the Tab key to move focus to it. Otherwise, pressing the Tab key doesn’t allow you to move to the grid and it can be focused only by a mouse click.

Actually, when a user switches to the grid control by pressing the Tab key, focus moves to the currently focused grid site, i.e. to the focused grid View. A grid site is a control of the TcxGridSite class containing and displaying grid Views. To access the currently focused View, use the FocusedGridView property. The site displaying the View is specified by its Site property.

The default value of the TabStop property is True.

See Also