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

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.v20.1.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

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.

See Also