Enum Alignments
Different alignments for embedding a small into a bigger frame.
Namespace: Sig.DeviceAPI
Assembly: SigDeviceAPI.dll
Syntax
[Flags]
public enum Alignments
Remarks
Combinations like Left | Right are not recommended. In such cases precedence rules apply.
Left takes precedence over Right.
Top takes precedence over Bottom.
All of them take precedence over Centered.
Fields
| Name | Description |
|---|---|
| Bottom | Align with the lower edge. |
| BottomLeft | Like LeftBottom |
| BottomRight | Like RightBottom |
| Centered | Centered alignment. |
| Left | Align with the left edge. |
| LeftBottom | Align with the left and the bottom edge. |
| LeftTop | Align with the left and the upper edge. |
| None | Default. |
| Right | Align with the right edge. |
| RightBottom | Align with the right and the lower edge. |
| RightTop | Align with the right and the upper edge. |
| Top | Align with the upper edge. |
| TopLeft | Like LeftTop |
| TopRight | Like RightTop |