Sort Score
Result 10 results
Languages All
Labels All
Results 2,221 - 2,230 of 31,564 for

groupdocs.total

(0.09 sec)
  1. Convert XML to PDF Using XSL-FO | GroupDocs

    Learn how to convert a XML document to PDF using XSL-FO with GroupDocs.Conversion for .NET....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/conversion/net/convert-xml-t...
  2. Add watermark | GroupDocs

    In this article, you will learn how to apply watermark to document pages when convert document with GroupDocs.Conversion for .NET API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/conversion/net/add-watermark/
  3. Multicolored Numbered List in HTML Document | G...

    Note In this article, we will use GroupDocs.Assembly to generate a Multicolored numbered list report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. Note This feature is supported by version 17.03 or greater. Multicolored Numbered List in HTML Document Reporting Requirement As a report developer, you are required to describe the services you are providing with the following key requirements:...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/assembly/net/multicolored-nu...
  4. How to save PDF document with other format | Gr...

    This article explains how to save signed PDF document with various file formats by GroupDocs.Signature API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/signature/net/save-signed-pd...
  5. Advanced search for Form Field signatures | Gro...

     This article explains how to provide advanced search for Form Field electronic signatures with GroupDocs.Signature API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/signature/net/advanced-searc...
  6. Verify Text signatures in the document | GroupDocs

    This topic explains how to verify Text electronic signatures with GroupDocs.Signature API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/signature/java/verify-text-s...
  7. Save signed Presentation with different output ...

    This article explains how to save signed Presentation documents with various file formats by GroupDocs.Signature API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/signature/java/save-signed-p...
  8. HTML | GroupDocs

    This article explains that how to extract HTML formatted text from document page in Java....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/parser/java/html/
  9. Get supported file formats | GroupDocs

    This article shows how to check supported file formats....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/parser/java/get-supported-fi...
  10. Getting known property descriptors | GroupDocs

    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....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/metadata/java/getting-known-...