Vcl.Samples.Calendar.TCalendar.TabStop
Delphi
property TabStop: Boolean read FTabStop write SetTabStop default 1;
C++
__property TabStop = {default=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.Samples.Calendar.pas Vcl.Samples.Calendar.hpp |
Vcl.Samples.Calendar | TCalendar |
Description
Determines whether the user can tab to a control.
Vcl.Samples.Calendar.TCalendar.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.