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