Search
HeaderCollection.Insert Method
See Also
 






Inserts the specified Header at the specified position within the HeaderCollection.

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

 Syntax

C#  Copy Code

public void Insert (
    int index,
    Header header
)

Visual Basic  Copy Code

Public Sub Insert( _
    index As Integer, _
    header As Header _
)

 Parameters

index

The zero-based index at which the Header should be inserted.

header

The Header object to insert.

 Remarks

Use this method to insert Header objects at a specific position in the collection. If you do not need to specify header's position, use the Add method instead, which adds new headers to the end of the list.

 See Also