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

PivotGridControl.ActiveEditor Property

Gets the PivotGrid’s active editor.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

[Browsable(false)]
public BaseEdit ActiveEditor { get; }

Property Value

Type Description
BaseEdit

A BaseEdit descendant that represents the currently active editor. null (Nothing in Visual Basic) if no cell is currently being edited.

Remarks

Cell values are edited by editors inherited from the BaseEdit class. Once a user starts to edit a cell value, the cell’s editor is created. When editing finishes, the cell editor is destroyed. There can be only one active editor instance at any moment. This editor is returned by the ActiveEditor property.

See Also