Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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