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