Beispiel #1
0
 public HtmlElementCollection GetElementsByTagName(string tagName)
 {
     Mono.WebBrowser.DOM.IElementCollection col = document.GetElementsByTagName (tagName);
     if (col != null)
         return new HtmlElementCollection (owner, webHost, col);
     return null;
 }
Beispiel #2
0
 public HtmlElementCollection GetElementsByTagName(string tagName)
 {
     Mono.WebBrowser.DOM.IElementCollection col = element.GetElementsByTagName(tagName);
     return(new HtmlElementCollection(owner, webHost, col));
 }