Search
HeaderCollection.Add Method
See Also
 





Adds the specified header to the collection.

Namespace: MindFusion.Diagramming.Lanes
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public int Add (
    Header header
)

Visual Basic  Copy Code

Public Function Add( _
    header As Header _
) As Integer

 Parameters

header
The Header object to add.

 Return Value

The index at which the header was added in the collection.

 Remarks

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

 See Also