Table of Contents

Enum TreePath

Namespace
Northwoods.Go.Layouts
Assembly
Northwoods.GoDiagram.WinForms.TreeLayout.dll

This enumeration specifies how to build a tree from the TreeNetwork. Used for Path.

public enum TreePath

Fields

Default = 0

Causes the value of IsTreePathToChildren to effectively choose either Destination (if true) or Source (if false).

Destination = 1

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 = 2

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.