windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsnavigation-c162a3d1.md
Gets or sets a value specifying whether horizontal navigation keys move focus to the next/previous row when the current row’s last/first cell is focused.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool AutoMoveRowFocus { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Overridable Property AutoMoveRowFocus As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if horizontal navigation keys can move focus between rows; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AutoMoveRowFocus |
|---|---|
| GridView |
.OptionsNavigation .AutoMoveRowFocus
| | WinExplorerView |
.OptionsNavigation .AutoMoveRowFocus
|
End-users can move focus between row cells using the left and right arrow keys. If the GridOptionsNavigation.UseTabKey option is enabled, they can also use the TAB/SHIFT+TAB combinations for the same purpose. If the GridOptionsNavigation.EnterMoveNextColumn option is enabled, the ENTER key can be used to move cell focus.
See Also