Skip to main content

DataViewBase.EnterMoveNextColumn Property

Gets or sets whether users can press the ENTER key to focus the next cell. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public bool EnterMoveNextColumn { get; set; }

Property Value

Type Default Description
Boolean false

true, if users can press the ENTER key to focus the next cell; otherwise, false.

Remarks

Set the EnterMoveNextColumn property to true. After a user presses Enter, the GridControl performs the following steps:

  1. Closes the focused cell’s editor (if it is active).
  2. Saves changes made.
  3. Moves focus to the next cell.
  4. Opens this cell’s editor.

Note

The EnterMoveNextColumn property does not affect the New Item Row.

See Also