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

IsNewline() private method

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