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

Success() 공개 메소드

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