Skip to main content

SpreadsheetControl.IsCellEditorActive Property

Gets whether the cell editor is currently active.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v23.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