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

BaseRow.TabStop Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

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

Property Value

Type Default Description
Boolean **true**

true if the user can focus the cell using the TAB/SHIFT+TAB or ENTER key; otherwise, false.

Remarks

When the 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 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 and ENTER keys if the vertical grid’s VGridOptionsBehavior.UseTabKey and VGridOptionsBehavior.UseEnterAsTab options are enabled. An individual row’s cells cannot be focused if the row’s VGridOptionsRow.AllowFocus option is inactive.

See Also