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

using System;


namespace Css.Properties{
	
	/// <summary>
	/// Represents the stemv: css property.
	/// </summary>
	
	public class Stemv:CssProperty{
		
		public Stemv(){
			
			// This is along the y axis:
			Axis=ValueAxis.Y;
			NamespaceName="svg";
		
		}
		
		public override string[] GetProperties(){
			return new string[]{"stemv"};
		}
		
		public override ApplyState Apply(ComputedStyle style,Value value){
			
			// Ok!
			return ApplyState.Ok;
			
		}
		
	}
	
}



