MindFusion.Wpf Pack Programmer's Guide
PathFinder.EnumAllPaths Method (DiagramNode, DiagramNode)
See Also
 





Enumerates all paths that exist between two DiagramNode objects.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public IEnumerable<Path> EnumAllPaths (
    DiagramNode from,
    DiagramNode to
)

Visual Basic  Copy Code

Public Function EnumAllPaths( _
    from As DiagramNode, _
    to As DiagramNode _
) As IEnumerable(Of Path)

 Parameters

from

The first DiagramNode in the Path.

to

The last DiagramNode in the Path.

 Return Value

An enumerator that iterates over found paths.

 Remarks

The returned Path instances include the from and to nodes.

 See Also

EnumAllPaths Method Overload List
PathFinder Members
PathFinder Class
MindFusion.Diagramming.Wpf Namespace
FindAllPaths Method