Skip to main content

DataControlBase.ActiveEditor Property

Gets the active editor. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public Control ActiveEditor { get; }

Property Value

Type Description
Control

A control that represents the focused cell’s editor. null (Nothing in Visual Basic) if no cell is currently being edited.

Remarks

Actual editors are only created when end-users start to edit a cell and are automatically destroyed when editing is completed.

When an end-user activates a cell within a column with a custom template, the GridControlBase.ShownEditor event is not raised. Since the GridControlBase.HiddenEditor event is not raised either, the ActiveEditor property value always stays null.

To learn more, see Data Editing.

See Also