Represents an <svg> element.
Inheritance: SvgDrawableContainerBaseElement
Ejemplo n.º 1
0
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     Root    = new SvgSVGElement(this, null, root);
     Options = options;
 }
Ejemplo n.º 2
0
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     Root    = new SvgSVGElement(this, null, root);
       Options = options;
 }
Ejemplo n.º 3
0
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     StyleDictionary = new Dictionary <string, IDictionary <string, string> >();
     Root            = new SvgSVGElement(this, null, root);
     Options         = options;
 }