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

DataControlBase.IsEditing Property

Gets whether the focused cell is currently being edited. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

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

Declaration

public bool IsEditing { get; }

Property Value

Type Description
Boolean

true if the grid is in edit mode; otherwise, false.

Remarks

If data editing is allowed, use the DataControlBase.ShowEditor method to activate the focused cell’s inplace editor. After the editor has been shown, the grid functions in edit mode and the IsEditing property returns true. The DataControlBase.ActiveEditor property returns the focused cell’s editor.

See Also