Enum GenericAlignment
Specifies content alignment.
[Flags]
public enum GenericAlignment
- Extension Methods
Fields
Bottom = 1024Content is vertically aligned at the bottom.
BottomLeft = 1024Content is vertically aligned at the bottom, and horizontally aligned on the left.
BottomRight = Right | BottomContent is vertically aligned at the bottom, and horizontally aligned on the right.
Center = CenterHorizontal | CenterVerticalContent is aligned at the center.
CenterHorizontal = 256Content is horizontally aligned on the center.
CenterRight = Right | CenterVerticalContent is vertically aligned at the center, and horizontally aligned on the right.
CenterVertical = 2048Content is vertically aligned at the center.
Invalid = -1A symbolic name for an invalid alignment value which can be assumed to be different from anything else.
Left = 0Content is horizontally aligned on the left.
Not = 0Content is horizontally aligned on the left or vertically aligned at the top.
Right = 512Content is horizontally aligned on the right.
Top = 0Content is vertically aligned at the top.
TopLeft = 0Content is vertically aligned at the top, and horizontally aligned on the left.
TopRight = 512Content is vertically aligned at the top, and horizontally aligned on the right.
Remarks
This enumeration supports a bitwise combination of its member values.