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

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