Skip to main content
A newer version of this page is available. .

SpreadsheetControl.IsCellEditorActive Property

Gets whether the cell editor is currently active.

Namespace: DevExpress.Xpf.Spreadsheet

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

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.

See Also