FlexJustify Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates values that describe how child elements are justified when there is extra space around them.
[Xamarin.Forms.TypeConverter(typeof(Xamarin.Forms.FlexJustifyTypeConverter))]
public enum FlexJustify
type FlexJustify =
- Inheritance
-
System.EnumFlexJustify
- Attributes
Fields
Name | Value | Description |
---|---|---|
Center | 2 | Indicates that child elements will be grouped toward the center of the parent. |
Start | 3 | Indicates that child elements will be justified to the start of the line. |
End | 4 | Indicates that child elements will be justified to the end of the line. |
SpaceBetween | 5 | Indicates that child elements will be spaced with equal space between units and no space at either end of the line, so that the elements and the space fill the line. |
SpaceAround | 6 | Indicates that child elements will be spaced with one unit of space at the beginning and end, and two units of space between them, so that the elements and the space fill the line. |
SpaceEvenly | 7 | Indicates that child elements will be spaced to have the same space between each element as there is between the beginning and end elements and the nearest edges of the parent. |