Table of Contents

Enum FlexBox.Direction

Namespace
Xui.Core.UI.Layout
Assembly
Xui.Core.dll

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 = 2

Items are placed top to bottom (block-start to block-end).

ColumnReverse = 3

Items are placed bottom to top (block-end to block-start).

Row = 0

Items are placed left to right (inline-start to inline-end).

RowReverse = 1

Items are placed right to left (inline-end to inline-start).