Search
PathFinder.EnumAllCycles Method
See Also
 





Enumerates all cycles in the underlying diagram.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public IEnumerable<Path> EnumAllCycles ()

Visual Basic  Copy Code

Public Function EnumAllCycles () As IEnumerable(Of Path)

 Return Value

A collection of Path objects; if no cycles are detected, the collection is empty.

 Remarks

The Enum* methods of PathFinder immediately yield each path once found, as opposed to Find* methods which collect them in a list.

 See Also