コード例 #1
0
        public AcHtmlInputText AddNewInputText(string InControlType)
        {
            AcHtmlInputText it = new AcHtmlInputText(InControlType);

            Controls.Add(it);
            return(it);
        }
コード例 #2
0
        // ----------------------- 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);
        }
コード例 #4
0
        // ----------------------- ToInputTextControl ---------------------------
        public AcHtmlInputText ToInputTextControl(HtmlControl InControl)
        {
            AcHtmlInputText textControl = (AcHtmlInputText)InControl;

            return(textControl);
        }