TabStop Property

Specifies whether a user can use the TAB key to move the focus to an object. Available at design time and run time.

 [Object.]Control.TabStop[ = lExpr]

Property Values

  • lExpr
    Specifies whether an object is included in the tab order. The settings for the TabStop property are as follows:
    Setting Description
    True (.T.) (Default) The control or form is included in the tab order, as determined by the TabIndex property.
    False (.F.) The object is ignored in the tab order. For a control, when a user presses the TAB key, the focus skips a control that has its TabStop property set to false (.F.). For a form, when a user presses the TABkey on the last control on a form and the next form in the tab order has its TabStop property set to false (.F.), the focus moves to the first control on the same form. The focus does not move to the next form in the tab order.

Remarks

If TabStop property is set to false (.F.) for a control or form, the control or form is skipped when the TAB key is used to move through the tab order, but it can still receive the focus when the mouse is used.

Note   The TabStop property is read-only when it applies to a control contained in a Column object.

See Also

TabIndex Property

Applies To: CheckBox | ComboBox | CommandButton | Container Object | Control Object | EditBox | Form | Grid | ListBox | OLE Bound Control | OLE Container Control | OptionButton | Page | PageFrame | _SCREEN | Spinner | TextBox