Enum FlexBox.Wrap
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 = 0All flex items are on a single line.
Wrap = 1Flex items wrap onto additional lines in the block-start direction.
WrapReverse = 2Flex items wrap onto additional lines in the block-end direction.