Table of Contents

Enum FlexBox.AlignContent

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

Aligns flex lines along the cross axis when there is extra space (only applies when wrapping). Corresponds to the CSS align-content property on a flex container.

public enum FlexBox.AlignContent : byte

Fields

Center = 3

Lines are centered on the cross axis.

FirstBaseline = 8

Lines are aligned along their first baseline.

FlexEnd = 2

Lines are packed toward the flex-end edge of the cross axis.

FlexStart = 1

Lines are packed toward the flex-start edge of the cross axis.

LastBaseline = 9

Lines are aligned along their last baseline.

Normal = 0

Browser default. Acts like Stretch.

SpaceAround = 5

Lines are evenly distributed with equal space around each line.

SpaceBetween = 4

Lines are evenly distributed; first line at start, last at end.

SpaceEvenly = 6

Lines are evenly distributed with equal space between all lines including edges.

Stretch = 7

Lines are stretched to fill the container.