Exemplo n.º 1
0
 private iText.StyledXmlParser.Jsoup.Nodes.Element GetDeepChild(iText.StyledXmlParser.Jsoup.Nodes.Element el
     ) {
     IList<iText.StyledXmlParser.Jsoup.Nodes.Element> children = el.Children();
     if (children.Count > 0) {
         return GetDeepChild(children[0]);
     }
     else {
         return el;
     }
 }