mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 08:15:27 +00:00
20 lines
602 B
C#
20 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Defines available alignments for text.
|
|
/// </summary>
|
|
public enum TextAlignment
|
|
{
|
|
/// <summary>The text is aligned to the near side (left for left-to-right text and right for right-to-left text).</summary>
|
|
Near = 0,
|
|
/// <summary>The text is aligned to the center.</summary>
|
|
Center,
|
|
/// <summary>The text is aligned to the far side (right for left-to-right text and left for right-to-left text).</summary>
|
|
Far
|
|
}
|
|
}
|