CollectionEditor.CanRemoveInstance(Object) Method

Definition

Indicates whether original members of the collection can be removed.

protected:
 virtual bool CanRemoveInstance(System::Object ^ value);
protected virtual bool CanRemoveInstance (object value);
abstract member CanRemoveInstance : obj -> bool
override this.CanRemoveInstance : obj -> bool
Protected Overridable Function CanRemoveInstance (value As Object) As Boolean

Parameters

value
Object

The value to remove.

Returns

true if it is permissible to remove this value from the collection; otherwise, false. The default implementation always returns true.

Remarks

When implemented in a derived class, this method indicates whether the specified value can be removed from the collection. By default, this method always returns true.

This method is called when the user tries to remove an item that is an original member of the collection. This method is not called when removing items that were added in the current editing session because they are not yet part of the collection.

Applies to