iTextSharp.text.xml.TagMap.Init C# (CSharp) Method

Init() protected method

Parses the xml document
protected Init ( XmlDocument xTagfile ) : void
xTagfile System.Xml.XmlDocument
return void
        protected void Init(XmlDocument xTagfile) {
            try {
                AttributeHandler a = new AttributeHandler(this);
                a.Parse(xTagfile);
            }
            catch (Exception e) {
                throw e;
            }
        }

Same methods

TagMap::Init ( string tagfile ) : void