Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(false)]
[DXCategory("Behavior")]
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