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 directions for text layout.
9
    /// </summary>
10
    public enum TextDirection
11
    {
12
        /// <summary>The text is layed out from left to right.</summary>
13
        LeftToRight,
14
        /// <summary>The text is layed out from right to left.</summary>
15
        RightToLeft,
16
        /// <summary>The text is layed out vertically.</summary>
17
        Vertical
18
    }
19
}