| 12345678910111213141516171819202122232425262728293031 |
- // Copyright (c) The Avalonia Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- namespace Avalonia.Media
- {
- /// <summary>
- /// Specifies the vertical position of a <see cref="TextDecoration"/> object.
- /// </summary>
- public enum TextDecorationLocation
- {
- /// <summary>
- /// The underline position.
- /// </summary>
- Underline = 0,
- /// <summary>
- /// The over line position.
- /// </summary>
- Overline = 1,
- /// <summary>
- /// The strikethrough position.
- /// </summary>
- Strikethrough = 2,
- /// <summary>
- /// The baseline position.
- /// </summary>
- Baseline = 3,
- }
- }
|