//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

namespace Css{
	
	/// <summary>
	/// Values of the text-orientation: property.
	/// </summary>
	
	public static class TextOrientationMode{
		
		public const int Mixed=0;
		public const int Upright=1;
		public const int Sideways=1<<1; // +Right and Left are aliases.
		public const int Glyph=1<<2;
		
	}
	
}