Skip to main content

GridOptionsNavigation.AutoMoveRowFocus Property

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

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

Declaration

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

Property Value

Type Default Description
Boolean true

true if horizontal navigation keys can move focus between rows; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AutoMoveRowFocus
GridView
.OptionsNavigation .AutoMoveRowFocus
WinExplorerView
.OptionsNavigation .AutoMoveRowFocus

Remarks

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