Skip to main content

XtraPanel.TabStop Property

Gets or sets a value indicating whether the user can focus this control using the TAB key.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

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

Property Value

Type Default Description
Boolean false

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

Remarks

When the user presses the TAB key, the input focus is set to the next control in the tab order. Controls with the TabStop property value of false are not included in the collection of controls in the tab order. The tab order can be manipulated by setting the control’s TabIndex property.

See Also