상속: System.Xml.XmlElement
예제 #1
0
 public void Add(SvgElement element)
 {
     AppendChild((XmlElement)element);
 }
예제 #2
0
파일: SvgRoot.cs 프로젝트: llenroc/sharpDox
 public void Add(SvgElement element)
 {
     _root.AppendChild(element);
 }
예제 #3
0
파일: SvgRoot.cs 프로젝트: llenroc/sharpDox
 public void ImportAdd(SvgElement element)
 {
     var importedNode = ImportNode(element, true);
     _root.AppendChild(importedNode);
 }
예제 #4
0
 public void Add(SvgElement element)
 {
     AppendChild((XmlElement)element);
 }