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

26 lines
531 B
C#

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