ListCollectionView.CanCancelEdit Property

Definition

Gets a value that indicates whether the collection view can discard pending changes and restore the original values of an edited object.

public:
 property bool CanCancelEdit { bool get(); };
public bool CanCancelEdit { get; }
member this.CanCancelEdit : bool
Public ReadOnly Property CanCancelEdit As Boolean

Property Value

true if the collection view can discard pending changes and restore the original values of an edited object; otherwise, false.

Implements

Remarks

CanCancelEdit is true if the edited item implements the System.ComponentModel.IEditableObject interface. If CanCancelEdit is false, call CancelEdit to cause the view to exit the edit state and provide logic to revert the changes on the object that was edited.

Applies to

See also