Vcl.Controls.TWinControl.TabStop
Delphi
property TabStop: Boolean read FTabStop write SetTabStop default False;
C++
__property bool TabStop = {read=FTabStop, write=SetTabStop, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | TWinControl |
Description
Determines whether the user can tab to a control.
Use the TabStop to allow or disallow access to the control using the Tab key.
If TabStop is True
, the control is in the tab order. If TabStop is False
, the control is not in the tab order and the user cannot press the TAB key to move to the control.
Note: TabStop is not meaningful for a form unless the form assigns another form to be its parent.