Represents an <svg> element.
Inheritance: SvgDrawableContainerBaseElement
コード例 #1
0
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     Root    = new SvgSVGElement(this, null, root);
     Options = options;
 }
コード例 #2
0
ファイル: SvgDocument.cs プロジェクト: jogibear9988/svg2xaml
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     Root    = new SvgSVGElement(this, null, root);
       Options = options;
 }
コード例 #3
0
 //==========================================================================
 public SvgDocument(XElement root, SvgReaderOptions options)
 {
     StyleDictionary = new Dictionary <string, IDictionary <string, string> >();
     Root            = new SvgSVGElement(this, null, root);
     Options         = options;
 }