Exemplo n.º 1
0
		public void AddHtmlTextInput(Action<HtmlTextInput> configAction ){
			HtmlTextInput hi = new  HtmlTextInput();
			configAction(hi);
			AddHtmlInput(hi);
		}
Exemplo n.º 2
0
		public void AddHtmlTextInput(Action<HtmlTextInput, HtmlParagragh> configAction ){
			HtmlTextInput hi = new  HtmlTextInput();
			HtmlParagragh p = new HtmlParagragh();
			configAction(hi, p);
			AddHtmlInput(hi, p);
		}