using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Graphics
{
///
/// Defines available alignments for text.
///
public enum TextAlignment
{
/// The text is aligned to the near side (left for left-to-right text and right for right-to-left text).
Near = 0,
/// The text is aligned to the center.
Center,
/// The text is aligned to the far side (right for left-to-right text and left for right-to-left text).
Far
}
}