LayoutDirection Enumeration |
Used to set direction of layout.
Namespace:
Aspose.Diagram.AutoLayout
Assembly:
Aspose.Diagram (in Aspose.Diagram.dll) Version: 20.3.0.0 (20.3)
Syntaxpublic enum LayoutDirection
Public Enumeration LayoutDirection
public enum class LayoutDirection
Members
| Member name | Value | Description |
---|
| TopToBottom | 0 |
Places shape from top to bottom.
It makes sense only when Flowchart style is choosen.
|
| BottomToTop | 1 |
Places shape from bottom to top.
It makes sense only when Flowchart style is choosen.
|
| LeftToRight | 2 |
Places shape from left to right .
It makes sense only when Flowchart style is choosen.
|
| RightToLeft | 3 |
Places shape from right to left.
It makes sense only when Flowchart style is choosen.
|
| DownThenRight | 4 |
Places shapes first to the down and then right.
It makes sense only when CompactTree style is choosen.
|
| RightThenDown | 5 |
Places shapes first to the right and then down.
It makes sense only when CompactTree style is choosen.
|
| LeftThenDown | 6 |
Places shapes first to the left and then down.
It makes sense only when CompactTree style is choosen.
|
| DownThenLeft | 7 |
Places shapes first to the down and then left.
It makes sense only when CompactTree style is choosen.
|
See Also