iTextSharp.text.xml.ITextHandler.IsNewpage C# (CSharp) Method

IsNewpage() private method

Checks if a certain tag corresponds with the newpage-tag.
private IsNewpage ( String tag ) : bool
tag String a presumed tagname
return bool
        private bool IsNewpage(String tag) {
            return ElementTags.NEWPAGE.Equals(tag);
        }