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