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


namespace Svg{
	
	public enum Overflow{
		
        /// <summary>The value is inherited from the parent element.</summary>
		Inherit,
        /// <summary>The overflow is rendered - same as "visible".</summary>
        Auto,
        /// <summary>Overflow is rendered.</summary>
        Visible,
        /// <summary>Overflow is not rendered.</summary>
        Hidden,
        /// <summary>Overflow causes a scrollbar to appear (horizontal, vertical or both).</summary>
		Scroll
		
	}
	
}