/Utilities/Datatypes/Advanced/HorizontalAlignment.cs
C# | 28 lines | 10 code | 3 blank | 15 comment | 0 complexity | 83aa8db5374275a32987011c7aa8e2a7 MD5 | raw file
Possible License(s): Apache-2.0
- namespace Delta.Utilities.Datatypes.Advanced
- {
- /// <summary>
- /// The available modes to align a text horizontally.
- /// </summary>
- public enum HorizontalAlignment
- {
- /// <summary>
- /// Displays the object unaligned to their original specified position.
- /// </summary>
- None,
-
- /// <summary>
- /// Displays the object aligned to the left side.
- /// </summary>
- Left,
-
- /// <summary>
- /// Displays the object horizontally centered.
- /// </summary>
- Centered,
-
- /// <summary>
- /// Displays the object aligned to the right side.
- /// </summary>
- Right,
- }
- }