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

namespace Css{
	
	/// <summary>
	/// This represents the position of a line drawn over some text [the text-decoration css property].
	/// </summary>
	
	public static class TextDecorationLineMode{
		
		public const int None=0;
		public const int Overline=1;
		public const int Underline=1<<1;
		public const int LineThrough=1<<2;
		
	}
	
}