ListCollectionView.CanCancelEdit Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.