/Utilities/Datatypes/Advanced/VerticalAlignment.cs

# · C# · 29 lines · 10 code · 3 blank · 16 comment · 0 complexity · 2d12760112655bc8118fef6faaee83f8 MD5 · raw file

  1. namespace Delta.Utilities.Datatypes.Advanced
  2. {
  3. /// <summary>
  4. /// The available modes to align a text vertically. Just top and center modes
  5. /// exist right now, bottom was not needed yet. Add it once needed.
  6. /// </summary>
  7. public enum VerticalAlignment
  8. {
  9. /// <summary>
  10. /// Displays the object unaligned to their original specified position.
  11. /// </summary>
  12. None,
  13. /// <summary>
  14. /// Displays the object aligned at the top.
  15. /// </summary>
  16. Top,
  17. /// <summary>
  18. /// Displays the object vertically centered.
  19. /// </summary>
  20. Centered,
  21. /// <summary>
  22. /// Displays the object aligned at the bottom.
  23. /// </summary>
  24. Bottom,
  25. }
  26. }