Adf.Web.UI.SmartView.SmartFieldExtensions.Set C# (CSharp) Method

Set() public static method

public static Set ( this style, string value ) : System.Web.UI.WebControls.TableItemStyle
style this
value string
return 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;
        }