Enum LayoutDirection

LayoutDirection enumeration

Used to set direction of layout.

public enum LayoutDirection

Values

NameValueDescription
TopToBottom0Places shape from top to bottom. It makes sense only when Flowchart style is chosen.
BottomToTop1Places shape from bottom to top. It makes sense only when Flowchart style is chosen.
LeftToRight2Places shape from left to right . It makes sense only when Flowchart style is chosen.
RightToLeft3Places shape from right to left. It makes sense only when Flowchart style is chosen.
DownThenRight4Places shapes first to the down and then right. It makes sense only when CompactTree style is chosen.
RightThenDown5Places shapes first to the right and then down. It makes sense only when CompactTree style is chosen.
LeftThenDown6Places shapes first to the left and then down. It makes sense only when CompactTree style is chosen.
DownThenLeft7Places shapes first to the down and then left. It makes sense only when CompactTree style is chosen.

See Also