Search
HeaderCollection.Remove Method
See Also
 






Removes the first occurrence of the specified Header from the collection.

Namespace: MindFusion.Diagramming.Lanes
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Remove (
    Header header
)

Visual Basic  Copy Code

Public Function Remove( _
    header As Header _
) As Boolean

 Parameters

header

The Header object to remove.

 Return Value

true if the header is successfully; otherwise, false.

 Remarks

Use this method to remove headers from the collection. Headers can be added to the collection with the Add or Insert methods.

 See Also