GoXam for WPF v3
TreeAlignment Enumeration
Northwoods.GoXam.Layout Namespace : TreeAlignment Enumeration
This enumeration specifies how to position a parent TreeVertex relative to its children, or how to align children in a bus.
Syntax
public enum TreeAlignment : System.Enum 
Members
MemberDescription
BottomRightBus The children are positioned in a bus, only on the bottom or right side of the parent. A bus does not take BreadthLimit into account.
BusThe children are positioned in a bus on both sides of an "aisle" where the links to them go, with the last odd child (if any) placed at the end of the aisle in the middle. The children, if they are themselves parents, continue at the same inherited angle; use BusBranching if you want grandchildren to proceed growing in the different angle as determined by the side. A bus does not take BreadthLimit into account.
BusBranchingLike Bus with the children arranged on both sides of an "aisle" with any last odd child placed at the end of the aisle, but the children get an TreeVertex.Angle that depends on which side of the aisle they were placed. This only works well when the TreeLayout.TreeStyle is TreeStyle.Layered.
CenterChildren The parent is centered at the middle of the range of its immediate child nodes. When there is a breadth limit that causes there to be multiple rows, the links that extend from the parent to those children in rows past the first one may cross over the nodes that are in earlier rows.
CenterSubtrees The parent is centered at the middle of the range of its child subtrees. When there is a breadth limit that causes there to be multiple rows, the links that extend from the parent to those children in rows past the first one may cross over the nodes that are in earlier rows.
End The parent is positioned near the last of its children.
Start The parent is positioned near the first of its children.
TopLeftBus The children are positioned in a bus, only on the top or left side of the parent, A bus does not take BreadthLimit into account.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Northwoods.GoXam.Layout.TreeAlignment

See Also

Reference

Northwoods.GoXam.Layout Namespace