コード例 #1
0
ファイル: HtmlDocument.cs プロジェクト: sengiv/WasmWinforms
 public HtmlElementCollection GetElementsByTagName(string tagName)
 {
     Mono.WebBrowser.DOM.IElementCollection col = document.GetElementsByTagName (tagName);
     if (col != null)
         return new HtmlElementCollection (owner, webHost, col);
     return null;
 }
コード例 #2
0
ファイル: HtmlElement.cs プロジェクト: zlxy/Genesis-3D
 public HtmlElementCollection GetElementsByTagName(string tagName)
 {
     Mono.WebBrowser.DOM.IElementCollection col = element.GetElementsByTagName(tagName);
     return(new HtmlElementCollection(owner, webHost, col));
 }