Search
FlowChart.GetCycle Method
See Also
 



Gets a cycle found by a previous DetectCycle invocation.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
IArrows* GetCycle (
    int Index
)

 Parameters

Index
The index of a buffered cycle.

 Return Value

A collection of Arrow objects forming a cycle.

 Remarks

DetectCycle puts the found cycles in a buffer, from which they can be retrieved using this method. The number of buffered cycles is returned by the CycleCount property.

 See Also