iTextSharp.text.pdf.PdfCopyFieldsImp.GetCatalog C# (CSharp) Méthode

GetCatalog() protected méthode

protected GetCatalog ( PdfIndirectReference rootObj ) : PdfDictionary
rootObj PdfIndirectReference
Résultat 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;
        }