Enum HorizontalAlignment
Used to describe how an element is positioned or stretched horizontally within a parent's layout slot.
public enum HorizontalAlignment
Fields
Center = 1Center element horizontally.
Fill = 4Stretch element horizontally within a remaining empty space which is not occupied by other sibling elements.
Left = 0Align element towards the left of a parent's layout slot.
Right = 2Align element towards the right of a parent's layout slot.
Stretch = 3Stretch element horizontally within a parent's layout slot.