예제 #1
0
        public SVGDocument(string originalDocument, SVGGraphics r)
        {
            parser = new SVGParser(originalDocument);

            while (!parser.isEOF && parser.node.name != SVGNodeName.SVG)
                parser.Next();

            _rootElement = new SVGElement(parser, new SVGTransformList(), null, true);
        }
예제 #2
0
        public SVGDocument(string originalDocument, SVGGraphics r)
        {
            parser = new SVGParser(originalDocument);

            while (!parser.isEOF && parser.node.name != SVGNodeName.SVG)
            {
                parser.Next();
            }

            _rootElement = new SVGElement(parser, new SVGTransformList(), null, true);
        }
예제 #3
0
 public void Clear()
 {
     _rootElement = null;
     parser = null;
 }
예제 #4
0
 public void Clear()
 {
     _rootElement = null;
     parser       = null;
 }