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, int width, bool enabled ) : void
label string Display Name of the Textbox.
name string Name of the Textbox.
width int Width of the Textbox.
enabled bool Enable the Textbox.
return void
        public void TextBox(string label, string name, int width, bool enabled)
        {
            Register(ControlType.TextBox, label, name, 0, width, enabled, true);
        }

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, bool enabled ) : void
CompoundPanel::TextBox ( string label, string name, int width ) : void