// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Text alignment modes.
///
public enum TextAlignment
{
///
/// Aligns text from the left or top when the text direction is
/// and from the right or bottom when the text direction is .
///
Start = 0,
///
/// Aligns text from the right or bottom when the text direction is
/// and from the left or top when the text direction is .
///
End = 1,
///
/// Aligns text from the center.
///
Center = 2
}
}