コード例 #1
0
 public bool TryGetCustomBoxGenerator(string customElementName, out CreateCssBoxDelegate cssBoxGen)
 {
     return(this.registedCustomElemenGens.TryGetValue(customElementName, out cssBoxGen));
 }
コード例 #2
0
ファイル: HtmlDocument.cs プロジェクト: prepare/HTML-Renderer
 public bool TryGetCustomBoxGenerator(string customElementName, out CreateCssBoxDelegate cssBoxGen)
 {
     return this.registedCustomElemenGens.TryGetValue(customElementName, out cssBoxGen);
 }
コード例 #3
0
 //-------------------------------------------------------------
 public void RegisterCustomElement(string customElementName, CreateCssBoxDelegate cssBoxGen)
 {
     //replace
     registedCustomElemenGens[customElementName] = cssBoxGen;
 }
コード例 #4
0
ファイル: HtmlDocument.cs プロジェクト: prepare/HTML-Renderer
 //-------------------------------------------------------------
 public void RegisterCustomElement(string customElementName, CreateCssBoxDelegate cssBoxGen)
 {
     //replace
     registedCustomElemenGens[customElementName] = cssBoxGen;
 }