Finds the longest path between the specified nodes.
SyntaxVB6
Copy Code
|
|---|
Public Function FindLongestPathBetween( _ |
C++
Copy Code
|
|---|
public: |
A collection of Arrow objects which make up the longest path between the specified nodes.
RemarksThe path containing the largest number of arrows is considered the longest one. The path returned by this method comprises a collection of arrows through which the source node is connected with the destination. The intermediate nodes can be found through the arrows' source and destination properties.
See Also