Learn how to merge EPUB files, combine EPUB files into one file programmatically in Python via .NET language using Groupdocs.Merger for Python via .NET library....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Note In this article, we will use Groupdocs.Assembly to generate a Bulleted List report in Presentation Document format based on the use case: Working with a Business Case. Note The code uses some of the objects defined in The Business Layer. Bulleted List in Microsoft PowerPoint Document Creating a Bulleted List Practising the following steps you can insert Bulleted List in MS PowerPoint 2013.
Add a new presentation slide. Add a bullet list at the place where you want it....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Note In this article, we will use Groupdocs.Assembly to generate a Common List Image report in Word Processing Document format based on the use case: Working with a Business Case. Note The code uses some of the objects defined in The Business Layer. Common List in Microsoft Word Document Creating a Common List Please follow below steps to create Common List Image document in MS Word 2013:
Insert the desired shape to display image in it....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Note In this article, we will use Groupdocs.Assembly to generate a In-ParagraphList report in Word Processing Document format based on the use case: Working with a Business Case. Note The code uses some of the objects defined in The Business Layer. In-Paragraph List in Microsoft Word Document Creating a In-Paragraph List Practicing the following steps you can create In-Paragraph List Template in MS Word 2013.
Write a sentence, for example “We provide support for the following products:”....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
This article demonstrates how to compare Word, Excel, PowerPoint, Outlook, OneNote, PDF, Image, HTML, AutoCAD, Visio, OpenDocument, OneNote documents using Groupdocs.Comparison for Python via .NET....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Learn how to merge image files, combine image files into one file programmatically in Python via .NET language using Groupdocs.Merger for Python via .NET library....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Learn how to convert a XML document to PDF using XSL-FO with Groupdocs.Conversion for .NET....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
This article shows how to check supported file formats....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...