public AcHtmlInputText AddNewInputText(string InControlType) { AcHtmlInputText it = new AcHtmlInputText(InControlType); Controls.Add(it); return(it); }
// ----------------------- FindInputTextControl --------------------------- public AcHtmlInputText FindInputTextControl(string InFindId) { AcHtmlInputText textControl = (AcHtmlInputText)FindControl(InFindId); return(textControl); }
public AcHtmlInputText AddNewInputText( ) { AcHtmlInputText it = new AcHtmlInputText( ); Controls.Add(it); return(it); }
// ----------------------- ToInputTextControl --------------------------- public AcHtmlInputText ToInputTextControl(HtmlControl InControl) { AcHtmlInputText textControl = (AcHtmlInputText)InControl; return(textControl); }