//--------------------------------------
//               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 type of css value that a <see cref="Css.Value"/> object holds.
	/// </summary>
	public enum ValueType{
		
		Null,
		Text,
		Set,
		Number,
		RelativeNumber,
		Image
		
	}
	
}