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

namespace PowerUI{
	
	/// <summary>
	/// Represents which type of input element something is.
	/// </summary>
	
	public enum InputType : int{
		Text = 1,
		Radio = 2,
		Checkbox = 3,
		Submit = 4,
		Button = 5,
		Hidden = 6,
		Number = 7,
		Email = 8,
		Url = 9,
		Undefined = 10
	}
	
}