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

29 lines
643 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System;
namespace SixLabors.Fonts {
/// <summary>
/// Provides enumeration of various text attributes.
/// </summary>
[Flags]
public enum TextAttributes
{
/// <summary>
/// No attributes are applied
/// </summary>
None = 0,
/// <summary>
/// The text set slightly below the normal line of type.
/// </summary>
Subscript = 1 << 0,
/// <summary>
/// The text set slightly above the normal line of type.
/// </summary>
Superscript = 1 << 1,
}
}