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