Vcl.ComCtrls.TPageControl.TabStop
Delphi
property TabStop;
C++
__property TabStop = {default=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TPageControl |
Description
Determines whether the user can tab to a control.
Vcl.ComCtrls.TPageControl.TabStop inherits from Vcl.Controls.TWinControl.TabStop. All content below this line refers to Vcl.Controls.TWinControl.TabStop.
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.