BootstrapComponents.Components.Forms.FormControls.TextBox.TextBox C# (CSharp) Method

TextBox() public method

public TextBox ( FormGroup formGroup, string id, string value ) : BootstrapComponents.Core
formGroup FormGroup
id string
value string
return BootstrapComponents.Core
        public TextBox(FormGroup formGroup, string id, string value)
            : base("input", null, true)
        {
            _id = id;
            Attrs["type"] = "text";
            Attrs["id"] = id;
            Attrs["value"] = value;
            Attrs["class"] += "form-control";
        }
TextBox