Vcl.Grids.TCustomGrid.TabStops

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TabStops[Index: Longint]: Boolean read GetTabStops write SetTabStops;

C++

__property bool TabStops[int Index] = {read=GetTabStops, write=SetTabStops};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Indicates whether the user can tab to specified columns in the grid.

Set TabStops to false to remove the column identified by Index from the tab order. The first column in the grid is identified by an Index of 0.

Note: When the Options property does not include goTabs, the user can't tab to any column, even if TabStops is true.

See Also