26 lines
568 B
C#
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
|
|
}
|
|
}
|