Table of Contents

Enum FlexBox.Wrap

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

Controls whether flex items are forced onto a single line or can wrap onto multiple lines. Corresponds to the CSS flex-wrap property.

public enum FlexBox.Wrap : byte

Fields

NoWrap = 0

All flex items are on a single line.

Wrap = 1

Flex items wrap onto additional lines in the block-start direction.

WrapReverse = 2

Flex items wrap onto additional lines in the block-end direction.