Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
 
5
namespace OpenTK.Graphics
6
{
7
    /// <summary>
8
    /// Defines available alignments for text.
9
    /// </summary>
10
    public enum TextAlignment
11
    {
12
        /// <summary>The text is aligned to the near side (left for left-to-right text and right for right-to-left text).</summary>
13
        Near = 0,
14
        /// <summary>The text is aligned to the center.</summary>
15
        Center,
16
        /// <summary>The text is aligned to the far side (right for left-to-right text and left for right-to-left text).</summary>
17
        Far
18
    }
19
}