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