iTextSharp.text.Section.IsTitle C# (CSharp) 메소드

IsTitle() 공개 정적인 메소드

Checks if a given tag corresponds with a title tag for this object.
public static IsTitle ( string tag ) : bool
tag string the given tag
리턴 bool
        public static bool IsTitle(string tag) {
            return ElementTags.TITLE.Equals(tag);
        }