Search
FlowChart.PathCount Property
See Also
 



Gets the number of paths found by the last path-finding method invocation.

 Syntax

VB6  Copy Code

Public Property Get PathCount() As Long

C++  Copy Code

public:
int get_PathCount ()

 Property Value

A long value.

 Remarks

Returns the number of paths found with the last search operation - either through the FindShortestPath or FindAllPaths methods. The found paths are buffered and can be retrieved from the buffer using the GetPath method.

 See Also