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

TextBox() public method

Registers a TextBox with the specified display name, name, width and have its state enabled or disabled as per value provided for parameter Enabled.
public TextBox ( string label, string name, bool enabled ) : void
label string Display Name of the Textbox.
name string Name of the Textbox.
enabled bool Enable the Textbox.
return void
        public void TextBox(string label, string name, bool enabled)
        {
            TextBox(label, name, DEFAULT_WIDTH, enabled);
        }

Same methods

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