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

GetCatalog() protected méthode

protected GetCatalog ( PdfIndirectReference rootObj ) : PdfDictionary
rootObj PdfIndirectReference
Résultat PdfDictionary
        protected virtual PdfDictionary GetCatalog(PdfIndirectReference rootObj)
        {
            PdfDictionary catalog = pdf.GetCatalog(rootObj);
            // [F12] tagged PDF
            BuildStructTreeRootForTagged(catalog);
            // [F13] OCG
            if (documentOCG.Count > 0)
            {
                FillOCProperties(false);
                catalog.Put(PdfName.OCPROPERTIES, OCProperties);
            }
            return catalog;
        }