Enum GenericDirection
Specifies content alignment or general direction.
[Flags]
public enum GenericDirection
Fields
All = TopLeft | BottomRightAll directions are specified.
Bottom = 128Content is vertically aligned at the bottom. Bottom direction is specified.
BottomLeft = Left | BottomContent is vertically aligned at the bottom, and horizontally aligned on the left. Bottom and Left directions are specified.
BottomRight = Right | BottomContent is vertically aligned at the bottom, and horizontally aligned on the right. Bottom and Right directions are specified.
Default = 0Content alignment or direction is not specified.
Left = 16Content is horizontally aligned on the left. Left direction is specified.
None = 0Content alignment or direction is not specified.
Right = 32Content is horizontally aligned on the right. Right direction is specified.
Top = 64Content is vertically aligned at the top. Top direction is specified.
TopLeft = Left | TopContent is vertically aligned at the top, and horizontally aligned on the left. Top and Left directions are specified.
TopRight = Right | TopContent is vertically aligned at the top, and horizontally aligned on the right. Top and Right directions are specified.
Remarks
This enumeration supports a bitwise combination of its member values.