windowsforms-devexpress-dot-xtraeditors-8996bb88.md
Lists keyboard navigation extensions.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[Flags]
public enum KeyboardNavigationExtensions
<Flags>
Public Enum KeyboardNavigationExtensions
| Name | Description |
|---|---|
Default |
Equals to RibbonAndBars.
|
| None |
Disables all keyboard navigation extensions.
|
| Editors |
Enables the RepositoryItemButtonEdit.AllowButtonNavigation option for all button editors.
|
| NavigationAndTabs |
Enables the NavigationPane.AllowNavigationThroughPages option for all navigation panes and descendants.
|
| RibbonAndBars |
Enables MS Word-inspired behavior for Ribbons and Bars. When a BarEditItem has focus and a user presses an arrow key, the BarEditItem retains focus, allowing navigation within the editor.
|
| TreeList |
Enables the TreeListOptionsNavigation.AllowExpandCollapseWithArrowKeys option for all TreeLists and descendants in the application. The option gets or sets whether to allow a user to expand/collapse TreeList nodes with the Left and Right arrow keys without holding Ctrl.
|
| ColumnHeaders |
Enables the GridOptionsNavigation.AllowHeaderNavigation option for all Data Grids in the application.
|
| All |
Enables all keyboard navigation extensions
|
The following properties accept/return KeyboardNavigationExtensions values:
This enumeration has the FlagsAttribute that allows a bitwise combination of its member values.
See Also