/Utilities/Datatypes/Advanced/VerticalAlignment.cs
# · C# · 29 lines · 10 code · 3 blank · 16 comment · 0 complexity · 2d12760112655bc8118fef6faaee83f8 MD5 · raw file
- namespace Delta.Utilities.Datatypes.Advanced
- {
- /// <summary>
- /// The available modes to align a text vertically. Just top and center modes
- /// exist right now, bottom was not needed yet. Add it once needed.
- /// </summary>
- public enum VerticalAlignment
- {
- /// <summary>
- /// Displays the object unaligned to their original specified position.
- /// </summary>
- None,
-
- /// <summary>
- /// Displays the object aligned at the top.
- /// </summary>
- Top,
-
- /// <summary>
- /// Displays the object vertically centered.
- /// </summary>
- Centered,
-
- /// <summary>
- /// Displays the object aligned at the bottom.
- /// </summary>
- Bottom,
- }
- }