Finds all paths between two graph nodes.
SyntaxVB6
Copy Code
|
|---|
Public Function FindAllPaths( _ |
C++
Copy Code
|
|---|
public: |
A collection of Arrow objects that connect the source and destination objects.
RemarksFinds all paths between two nodes. The path is a collection of arrows through which the source object is connected with the destination. The intermediate objects can be found through the arrows' Origin and Destination properties. Paths found by this method are buffered and the shortest path is returned as a result. Paths can be retrieved from the buffer using PathCount and GetPath.
See Also