示例#1
0
        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);
        }
示例#3
0
        public AcHtmlInputText AddNewInputText( )
        {
            AcHtmlInputText it = new AcHtmlInputText( );

            Controls.Add(it);
            return(it);
        }
        // ----------------------- ToInputTextControl ---------------------------
        public AcHtmlInputText ToInputTextControl(HtmlControl InControl)
        {
            AcHtmlInputText textControl = (AcHtmlInputText)InControl;

            return(textControl);
        }