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

CellEditorEnterValueMode Enum

Lists values that specify how to commit a cell value when closing the cell editor.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public enum CellEditorEnterValueMode

#Members

Name Description
ActiveCell

Commits a value entered via the cell editor to an active cell.

Default

Defines the same behavior as the CellEditorEnterValueMode.ActiveCell mode.

SelectedCells

Commits a value entered via the cell editor to all currently selected cells.

ArrayFormula

Commits a formula entered via the cell editor as an array formula to an active cell or selected cells.

Cancel

Cancels any changes to a cell value made in the cell editor.

#Remarks

A CellEditorEnterValueMode enumeration value is used in the SpreadsheetControl.CloseCellEditor method as a parameter.

See Also