TextDecorationLocation.cs 792 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. namespace Avalonia.Media
  4. {
  5. /// <summary>
  6. /// Specifies the vertical position of a <see cref="TextDecoration"/> object.
  7. /// </summary>
  8. public enum TextDecorationLocation
  9. {
  10. /// <summary>
  11. /// The underline position.
  12. /// </summary>
  13. Underline = 0,
  14. /// <summary>
  15. /// The over line position.
  16. /// </summary>
  17. Overline = 1,
  18. /// <summary>
  19. /// The strikethrough position.
  20. /// </summary>
  21. Strikethrough = 2,
  22. /// <summary>
  23. /// The baseline position.
  24. /// </summary>
  25. Baseline = 3,
  26. }
  27. }