Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WinExplorerView.IsEditing Property

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

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#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