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

IsDocumentRoot() protected method

Checks if a certain tag corresponds with the roottag.
protected IsDocumentRoot ( String tag ) : bool
tag String a presumed tagname
return bool
        protected bool IsDocumentRoot(String tag) {
            return ElementTags.ITEXT.Equals(tag);
        }
    }