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

26 lines
523 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
/// <summary>
/// Specifies the writing direction for text.
/// </summary>
public enum TextDirection
{
/// <summary>
/// Left to right.
/// </summary>
LeftToRight = 0,
/// <summary>
/// Right to left.
/// </summary>
RightToLeft = 1,
/// <summary>
/// Automatically determined.
/// </summary>
Auto = 2,
}
}