TreePath
StockSharp.Xaml.Diagram.GXDiagram.Layout
This enumeration specifies how to build a tree from the TreeNetwork.
Fields
Default
public const TreePath Default
value = TreePath.Default
This value for Path uses the value of TreePath to determine whether edges go from the parent vertex to child vertexes or vice-versa.
Destination
public const TreePath Destination
value = TreePath.Destination
The children of a TreeVertex are its DestinationVertexes, the collection of connected TreeEdge.ToVertexs. The tree roots are those TreeVertexs that have a zero SourceEdgesCount.
Source
public const TreePath Source
value = TreePath.Source
The children of a TreeVertex are its SourceVertexes, the collection of connected TreeEdge.FromVertexs. The tree roots are those TreeVertexs that have a zero DestinationEdgesCount.