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

SpreadsheetControl.IsCellEditorActive Property

Gets whether the cell editor is currently active.

Namespace: DevExpress.Xpf.Spreadsheet

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

NuGet Package: DevExpress.Wpf.Spreadsheet

#Declaration

[Browsable(false)]
public bool IsCellEditorActive { get; }

#Property Value

Type Description
Boolean

true, if the cell editor is opened; otherwise, false.

#Remarks

Before the cell editor is opened, the SpreadsheetControl.CellBeginEdit event is raised. You can handle this event to obtain the location of the opened cell editor or to prevent the cell editor from being opened. To close the cell editor, use the SpreadsheetControl.CloseCellEditor method. The SpreadsheetControl.CellEndEdit or SpreadsheetControl.CellCancelEdit event occurs before the cell editor is closed, depending on whether an entered cell value is committed or rolled back.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IsCellEditorActive property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also