Enumerates all cycles in the underlying diagram.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public IEnumerable<Path> EnumAllCycles () |
Visual Basic
Copy Code
|
|---|
Public Function EnumAllCycles () As IEnumerable(Of Path) |
A collection of Path objects; if no cycles are detected, the collection is empty.
RemarksThe Enum* methods of PathFinder immediately yield each path once found, as opposed to Find* methods which collect them in a list.
See Also