Edit

Share via


ModelItemCollection.Remove Method

Definition

Removes a ModelItem or other Object from the collection.

Overloads

Name Description
Remove(ModelItem)

Removes the ModelItem from the collection.

Remove(Object)

Removes the value from the collection.

Remove(ModelItem)

Removes the ModelItem from the collection.

public:
 abstract bool Remove(System::Activities::Presentation::Model::ModelItem ^ item);
public abstract bool Remove(System.Activities.Presentation.Model.ModelItem item);
abstract member Remove : System.Activities.Presentation.Model.ModelItem -> bool
Public MustOverride Function Remove (item As ModelItem) As Boolean

Parameters

item
ModelItem

The ModelItem.

Returns

true if the ModelItem was removed from the collection; otherwise, false.

Implements

Applies to

Remove(Object)

Removes the value from the collection.

public:
 abstract bool Remove(System::Object ^ value);
public abstract bool Remove(object value);
abstract member Remove : obj -> bool
Public MustOverride Function Remove (value As Object) As Boolean

Parameters

value
Object

The Object.

Returns

true if the value was removed from the collection; otherwise, false.

Applies to