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

WinExplorerView.IsEditing Property

Gets whether an item within this WinExplorerView is currently being edited.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public override bool IsEditing { get; }

Property Value

Type Description
Boolean

true, if an item within this WinExplorerView is currently being edited; otherwise, false.

Remarks

Initially the IsEditing property equals false. You can change item captions for the WinExplorerView records. To do so, assign an editor to the text column (see the WinExplorerViewColumns.TextColumn property) via the GridColumn.ColumnEdit property and double-click an item at runtime. This will subsequently fire the ColumnView.ShowingEditor and ColumnView.ShownEditor events and change the IsEditing property value to true. After the item name is modified, the ColumnView.HiddenEditor event occurs and the IsEditing property starts returning false again.

See Also