PageRenderTime 46ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/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
  1. namespace Delta.Utilities.Datatypes.Advanced
  2. {
  3. /// <summary>
  4. /// The available modes to align a text horizontally.
  5. /// </summary>
  6. public enum HorizontalAlignment
  7. {
  8. /// <summary>
  9. /// Displays the object unaligned to their original specified position.
  10. /// </summary>
  11. None,
  12. /// <summary>
  13. /// Displays the object aligned to the left side.
  14. /// </summary>
  15. Left,
  16. /// <summary>
  17. /// Displays the object horizontally centered.
  18. /// </summary>
  19. Centered,
  20. /// <summary>
  21. /// Displays the object aligned to the right side.
  22. /// </summary>
  23. Right,
  24. }
  25. }