Skip to main content

DataViewBase.IsEditing Property

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

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public bool IsEditing { get; }

#Property Value

Type Description
Boolean

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

#Remarks

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

To learn more, see Inplace Editors Overview and Showing and Hiding Editors.

See Also