Enum TreePath
This enumeration specifies how to build a tree from the TreeNetwork. Used for Path.
Namespace: Northwoods.Go.Layouts
Assembly: Northwoods.GoDiagram.Avalonia.TreeLayout.dll
Syntax
public enum TreePath
Fields
Name | Description |
---|---|
Default | Causes the value of IsTreePathToChildren to effectively choose either Destination (if true) or Source (if false). |
Destination | The children of a TreeVertex are its DestinationVertexes, the collection of connected ToVertexes; this value is used for Path. The tree roots are those TreeVertexes that have zero source edges. |
Source | The children of a TreeVertex are its SourceVertexes, the collection of connected FromVertexes; this value is used for Path. The tree roots are those TreeVertexes that have zero destination edges. |