Learn how to extract table of contents (TOC) from Word documents, PDF Files, and eBooks using GroupDocs.Parser for .NET. Extract TOC items with page numbers and depth levels in C#....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article shows how to extract table of contents from Microsoft Word (DOC, DOCX etc), PDF documents and Ebooks (CHM, EPUB)....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Learn how to add text watermark to PDF using Python. This tutorial shows how to apply watermark to PDF in Python with custom font, color, and alignment....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Comparison Product Family GroupDocs...
This article explains how to sign document electronically with generated Stamp signatures by GroupDocs.Signature Api....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to sign a document with multiple signatures of various types by GroupDocs.Signature Api...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article shows how to redact the pages of a document as images, redacting entire areas of the page instead or in addition to a specific text....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article shows how to create electronic signatures with additional visual extensions...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to save signed PDF document with various File formats by GroupDocs.Signature Api....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a File to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a File to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iComparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...