Enum FlowDirection
Represents the resolved physical direction of layout flow along an axis. This is derived from WritingMode and Direction, and is used to control stacking, alignment, and layout flow along block or inline axes.
public enum FlowDirection : byte
Fields
BottomToTop = 3Content flows from bottom to top.
LeftToRight = 0Content flows from left to right.
RightToLeft = 1Content flows from right to left.
TopToBottom = 2Content flows from top to bottom.