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

OptionsColumn.TabStop Property

Gets or sets whether the column can be focused via the TAB key.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public bool TabStop { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the column can be focused via the TAB key; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to TabStop
GridColumn
.OptionsColumn.TabStop
LayoutViewColumn
.OptionsColumn.TabStop
BandedGridColumn
.OptionsColumn.TabStop

Remarks

If the TabStop property is set to false, the column’s cells cannot be focused when navigating through cells via the TAB key. However, these cells can still be focused via the mouse or navigating through cells via the ARROW keys.

To prevent a column’s cells from being focused, use the OptionsColumn.AllowFocus property.

The TabStop property is supported in the GridView, BandedGridView, AdvBandedGridView classes and their descendants. In other Views, this property is not supported.

See Also