Search
PathCollection.Insert Method
See Also
 





Inserts the specified Path to the PathCollection at the specified index.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void Insert (
    int index,
    Path path
)

Visual Basic  Copy Code

Public Sub Insert( _
    index As Integer, _
    path As Path _
)

 Parameters

index
The zero-based index at which the new Path element should be inserted.
path
The Path element to insert.

 Remarks

The method inserts a new element at a given position in the PathCollection. Use Add to add a new element to the end of the collection.

 See Also