Enum FlexBox.Direction
Specifies the direction of the main axis along which flex items are placed.
Corresponds to the CSS flex-direction property.
public enum FlexBox.Direction : byte
Fields
Column = 2Items are placed top to bottom (block-start to block-end).
ColumnReverse = 3Items are placed bottom to top (block-end to block-start).
Row = 0Items are placed left to right (inline-start to inline-end).
RowReverse = 1Items are placed right to left (inline-end to inline-start).