FlexAlignSelf 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 control how and whether a child element overrides alignment attributes applied by its parent.
[Xamarin.Forms.TypeConverter(typeof(Xamarin.Forms.FlexAlignSelfTypeConverter))]
public enum FlexAlignSelf
type FlexAlignSelf =
- Inheritance
-
System.EnumFlexAlignSelf
- Attributes
Fields
Name | Value | Description |
---|---|---|
Auto | 0 | Indicates that the element will use the alignment supplied by the FlexAlignItems value provided to its parent. |
Stretch | 1 | Indicates that the element will stretch from start to end of the parent. |
Center | 2 | Indicates that the element will be centered within the parent. |
Start | 3 | Indicates that the element will be placed against the start of the parent. |
End | 4 | Indicates that the element will be placed against the end of the parent. |