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

26 lines
568 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
/// <summary>
/// Provides enumeration for the various layout mode of an individual glyph within a body of text.
/// </summary>
public enum GlyphLayoutMode
{
/// <summary>
/// Horizontal.
/// </summary>
Horizontal,
/// <summary>
/// Vertical.
/// </summary>
Vertical,
/// <summary>
/// Rotated 90 degrees clockwise.
/// </summary>
VerticalRotated
}
}