Skip to main content
A newer version of this page is available. .

NavigatorBase.TabStop Property

Gets or sets a value indicating whether the user can move focus to a navigator using the TAB key.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(false)]
public bool TabStop { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the user can move focus to the control using the TAB key; otherwise, false.

Remarks

When the user presses the TAB key, focus is set to the next control in the tab order. Controls whose TabStop property value is set to false are not included in the collection of controls in the tab order. These controls cannot be focused using the TAB key.

The TabStop property allows you to specify whether the user can move focus to the navigator using the TAB key. Set its value to true to include the control in the tab order collection. You can also use the TabIndex property to determine the control’s tab order.

Changing the TabStop property value at runtime raises the TabStopChanged event.

See Also