Back to Devexpress

BaseRow.TabStop Property

windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-baserow-859ba703.md

latest2.7 KB
Original Source

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

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

Declaration

csharp
[DefaultValue(true)]
[DXCategory("Behavior")]
[XtraSerializableProperty]
public virtual bool TabStop { get; set; }
vb
<DefaultValue(True)>
<XtraSerializableProperty>
<DXCategory("Behavior")>
Public Overridable Property TabStop As Boolean

Property Value

TypeDefaultDescription
Booleantrue

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

AllowFocus

OptionsRow

UseTabKey

UseEnterAsTab

BaseRow Class

BaseRow Members

DevExpress.XtraVerticalGrid.Rows Namespace