Skip to main content

DataControlBase.ShowEditor() Method

Activates the focused cell’s inplace editor.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public void ShowEditor()

Remarks

Cell editors can be activated if the grid column’s ColumnBase.AllowEditing property is set to true and the DataControlBase.NavigationStyle property is set to NavigationStyle.Cell.

To programmatically activate the cell’s editor, you should focus the cell and call the ShowEditor method.

After the editor is displayed, it can be obtained using the DataControlBase.ActiveEditor property.

To learn more, see Showing and Hiding Editors.

See Also