BootstrapExtensions.Base.Form.Label.LabelAndControl.HelpText C# (CSharp) Method

HelpText() public method

public HelpText ( string text, bool inline = true ) : LabelAndControl
text string
inline bool
return LabelAndControl
        public LabelAndControl HelpText(string text, bool inline = true)
        {
            var helpCode = string.Format("<span class=\"{0}\">{1}</span>", inline ? "help-inline" : "help-block", text);
            _control = MvcHtmlString.Create(_control + helpCode);
            return this;
        }