iTextSharp.text.pdf.intern.PdfVersionImp.AddToCatalog C# (CSharp) Method

AddToCatalog() public method

public AddToCatalog ( PdfDictionary catalog ) : void
catalog iTextSharp.text.pdf.PdfDictionary
return void
        public void AddToCatalog(PdfDictionary catalog)
        {
            if(catalog_version != null) {
                catalog.Put(PdfName.VERSION, catalog_version);
            }
            if (extensions != null) {
                catalog.Put(PdfName.EXTENSIONS, extensions);
            }
        }