Search
FlowChart.GetPath Method
See Also
 



Gets a path found by a previous FindAllPaths invocation.

 Syntax

VB6  Copy Code

Public Function GetPath( _
    ByVal Index As Long _
) As IArrows

C++  Copy Code

public:
IArrows* GetPath (
    int Index
)

 Parameters

Index
The index of a buffered path.

 Return Value

A collection of Arrow objects representing the path between two nodes.

 Remarks

FindShortestPath and FindAllPaths methods put the found paths in a buffer, from which they can be retrieved using this method. The number of buffered paths is returned by the PathCount property.

 See Also