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

Label() public method

public Label ( FormGroup formGroup, string text, string id = null ) : BootstrapComponents.Core
formGroup FormGroup
text string
id string
return BootstrapComponents.Core
        public Label(FormGroup formGroup, string text, string id = null)
            : base("label", text, false)
        {
            _id = id ?? text;
            Attrs["for"] = _id;
        }
Label