Skip to main content

TcxCustomGrid.TabStop Property

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

Declaration

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