Search
TreeLayoutBalance Enumeration
See Also
 





Specifies how to order child nodes in order to produce tree layouts with custom balance.

Namespace: MindFusion.Diagramming.Layout
Assembly: MindFusion.Diagramming.Layout

 Syntax

C#  Copy Code

public enum TreeLayoutBalance

Visual Basic  Copy Code

Public Enum TreeLayoutBalance

 Members

  Member name Description

Original

Indicates that the child order should not be changed.

Reversed

Indicates that the child order should be reversed.

LeftHeavy

Indicates that the child nodes with most total children will be processed first, thus producing a left-heavy layout.

RightHeavy

Indicates that the child nodes with least total children will be processed first, thus producing a right-heavy layout.

Preserve

Indicates that the layout will attempt to preserve the initial relative ordering of nodes.

 See Also