iTextSharp.tool.xml.css.StyleAttrCSSResolver.CanInherite C# (CSharp) Method

CanInherite() private method

private CanInherite ( Tag t, String property ) : bool
t Tag
property String
return bool
        private bool CanInherite(Tag t, String property)
        {
            if (null != this.inherit) {
                return this.inherit.InheritCssSelector(t, property);
            }
            return true;
        }