//--------------------------------------
//               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-transform: property.
	/// </summary>
	
	public static class TextTransformMode{
		
		public const int None=0;
		public const int Capitalize=1;
		public const int Uppercase=1<<1;
		public const int Lowercase=1<<2;
		
	}
	
}