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