ImageSharp/SixLabors.Fonts/TextDecorations.cs
2026-08-03 22:31:27 +02:00

34 lines
742 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System;
namespace SixLabors.Fonts {
/// <summary>
/// Provides enumeration of various text decorations.
/// </summary>
[Flags]
public enum TextDecorations
{
/// <summary>
/// No attributes are applied
/// </summary>
None = 0,
/// <summary>
/// The text is underlined
/// </summary>
Underline = 1 << 0,
/// <summary>
/// The text contains a horizontal line through the center.
/// </summary>
Strikeout = 1 << 1,
/// <summary>
/// The text contains a horizontal line above it
/// </summary>
Overline = 1 << 2
}
}