// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Horizontal alignment modes.
///
public enum HorizontalAlignment
{
///
/// Aligns text from the left.
///
Left = 0,
///
/// Aligns text from the right.
///
Right = 1,
///
/// Aligns text from the center.
///
Center = 2
}
}