QvxLib.FieldAttributes.ApplyCustomAttributes C# (CSharp) Method

ApplyCustomAttributes() public method

public ApplyCustomAttributes ( IEnumerable Attributes ) : void
Attributes IEnumerable
return void
        public void ApplyCustomAttributes(IEnumerable<Attribute> Attributes)
        {
            foreach (var item in Attributes)
            {
                var FieldAttribute = item as IQvxFieldAttribute;
                if (FieldAttribute != null)
                    FieldAttribute.ApplyAttribute(this);
            }
        }