BootstrapExtensions.Base.Form.Label.LabelAndControl.Warning C# (CSharp) 메소드

Warning() 공개 메소드

public Warning ( bool condition = true ) : LabelAndControl
condition bool
리턴 LabelAndControl
        public LabelAndControl Warning(bool condition = true)
        {
            if (condition) HtmlAttributes["class"] = "warning";
            return this;
        }