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

GridOptionsNavigation.EnterMoveNextColumn Property

Gets or sets a value specifying whether the ENTER key can be used to move cell focus.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool EnterMoveNextColumn { get; set; }

Property Value

Type Default Description
Boolean **false**

true to enable focus moving using the ENTER key; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to EnterMoveNextColumn
AdvBandedGridView
.OptionsNavigation.EnterMoveNextColumn
BandedGridView
.OptionsNavigation.EnterMoveNextColumn
GridView
.OptionsNavigation.EnterMoveNextColumn
WinExplorerView
.OptionsNavigation.EnterMoveNextColumn

Remarks

The EnterMoveNextColumn option defines the ENTER key behavior when a cell editor is active. If set to false, pressing the ENTER key results in closing the editor saving changes made. Otherwise, the ENTER key press additionally moves focus to the next row cell and activates its editor. Note that focus is moved even if the next cell cannot be edited.

Note

When using memo editors, consider setting their AcceptReturn property to false to allow using this feature. Otherwise, the ENTER key is processed by the editor.

Note

Setting the EnterMoveNextColumn option does not work for the New Item Row.

See Also