Adf.Web.UI.CompoundPanel.MultiTextBox C# (CSharp) Method

MultiTextBox() public method

Registers a Multiline TextBox with the specified name and height.
public MultiTextBox ( string name, int height ) : void
name string Name of the Textbox.
height int Height of the Textbox.
return void
        public void MultiTextBox(string name, int height)
        {
            MultiTextBox(name, name, height, DEFAULT_WIDTH, true);
        }

Same methods

CompoundPanel::MultiTextBox ( string name, int height, int width ) : void
CompoundPanel::MultiTextBox ( string label, string name, int height ) : void
CompoundPanel::MultiTextBox ( string label, string name, int height, bool enabled ) : void
CompoundPanel::MultiTextBox ( string label, string name, int height, int width ) : void
CompoundPanel::MultiTextBox ( string label, string name, int height, int width, bool enabled ) : void