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

ColumnBase.TabStop Property

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

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public bool TabStop { get; set; }

Property Value

Type Description
Boolean

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

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 ColumnBase.AllowFocus property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the TabStop property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also