Enum FlexStackAlignContent
- Namespace
- BlazOrbit.Components.Layout
- Assembly
- BlazOrbit.dll
Maps to CSS align-content for multi-line flex containers.
public enum FlexStackAlignContent
Fields
Center = 2Center lines on the cross axis.
End = 1Pack lines to the end of the cross axis.
SpaceAround = 5Distribute lines with equal space around.
SpaceBetween = 4Distribute lines with equal space between.
SpaceEvenly = 6Distribute lines with equal space between and around.
Start = 0Pack lines to the start of the cross axis.
Stretch = 3Stretch lines to fill the cross axis.