iTextSharp.text.pdf.PdfCopyFieldsImp.GetCatalog C# (CSharp) 메소드

GetCatalog() 보호된 메소드

protected GetCatalog ( PdfIndirectReference rootObj ) : PdfDictionary
rootObj PdfIndirectReference
리턴 PdfDictionary
        protected override PdfDictionary GetCatalog(PdfIndirectReference rootObj)
        {
            PdfDictionary cat = pdf.GetCatalog(rootObj);
            if (form != null) {
                PdfIndirectReference refi = AddToBody(form).IndirectReference;
                cat.Put(PdfName.ACROFORM, refi);
            }
            return cat;
        }