Search
HeaderCollection.Add Method
See Also
 






Adds the specified header to the collection.

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

 Syntax

C#  Copy Code

public void Add (
    Header header
)

Visual Basic  Copy Code

Public Sub Add( _
    header As Header _
)

 Parameters

header

The Header object to add.

 Remarks

The method adds a Header object to the end of the collection. If you need to place the Header at a certain position, you should use Insert method instead.

 See Also