SvgElement.cs 34 KB
Newer Older
joreg's avatar
joreg committed
1001
1002
1003
    {
        public string s;
    }
1004
1005
1006
1007
1008
    
    public class MouseScrollArg : SVGArg
    {
    	public int Scroll;
    }
1009

davescriven's avatar
davescriven committed
1010
1011
    internal interface ISvgElement
    {
1012
1013
1014
		SvgElement Parent {get;}
		SvgElementCollection Children { get; }

1015
        void Render(SvgRenderer renderer);
davescriven's avatar
davescriven committed
1016
1017
    }
}