Search
CollectionBase(T).Remove Method
See Also
 





Removes the first occurrence of a specific object from the collection.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public abstract bool Remove (
    T item
)

Visual Basic  Copy Code

Public MustOverride Function Remove( _
    item As T _
) As Boolean

 Parameters

item

The object to remove from the collection.

 Return Value

true if item is successfully removed; otherwise, false.

 See Also