Skip to main content

CategoryRow.TabStop Property

Gets or sets whether the user can move focus to the category row using the TAB/SHIFT+TAB key.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

Declaration

[DefaultValue(false)]
public override bool TabStop { get; set; }

Property Value

Type Default Description
Boolean false

true if the user can focus the category row using the TAB/SHIFT+TAB key; otherwise, false.

Remarks

When a user presses the TAB or ENTER key, focus is moved to the next row cell in the tab order. Rows whose TabStop property value is set to false are not included in the collection of rows in the tab order. Cells residing within these rows cannot be focused using either the TAB or ENTER key. If the row’s TabStop property is set to false, its cells can still be focused using the mouse.

Cells can be focused using the TAB or ENTER keys if the vertical grid’s VGridOptionsBehavior.UseTabKey and VGridOptionsBehavior.UseEnterAsTab options are enabled. An individual row’s cells can not be focused if the row’s VGridOptionsRow.AllowFocus option is inactive.

See Also