public void AddHtmlTextInput(Action<HtmlTextInput> configAction ){ HtmlTextInput hi = new HtmlTextInput(); configAction(hi); AddHtmlInput(hi); }
public void AddHtmlTextInput(Action<HtmlTextInput, HtmlParagragh> configAction ){ HtmlTextInput hi = new HtmlTextInput(); HtmlParagragh p = new HtmlParagragh(); configAction(hi, p); AddHtmlInput(hi, p); }