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

using System;
using System.Collections.Generic;
using System.Text;

namespace Svg{
	
	/// <summary>
	/// The SVG mask element.
	/// </summary>
	[Dom.TagName("mask")]
	public class SVGMaskElement:SVGElement{
		
		/*
		/// <summary>X coord.</summary>
		public SVGAnimatedLength x{
			get{
				return new SVGAnimatedLength(XValue,this,"x");
			}
		}
		
		/// <summary>Y coord.</summary>
		public SVGAnimatedLength y{
			get{
				return new SVGAnimatedLength(YValue,this,"y");
			}
		}
		
		/// <summary>width.</summary>
		public SVGAnimatedLength width{
			get{
				return new SVGAnimatedLength(WidthValue,this,"width");
			}
		}
		
		/// <summary>height.</summary>
		public SVGAnimatedLength height{
			get{
				return new SVGAnimatedLength(HeightValue,this,"height");
			}
		}
		*/
		
	}
}