Adf.Web.UI.SmartView.SmartFieldExtensions.Set C# (CSharp) 메소드

Set() 공개 정적인 메소드

public static Set ( this style, string value ) : System.Web.UI.WebControls.TableItemStyle
style this
value string
리턴 System.Web.UI.WebControls.TableItemStyle
        public static TableItemStyle Set(this TableItemStyle style, string value)
        {
            if (style.CssClass.IsNullOrEmpty() && !value.IsNullOrEmpty()) style.CssClass = value;

            return style;
        }