Sort Score
Result 10 results
Languages All
Labels All
Results 2,681 - 2,690 of 5,693 for

file merger

(0.06 sec)
  1. Add strikeout annotation | GroupDocs

    The page describes how to add strikeout annotation to a document using GroupDocs.Annotation for Java....Merger Product Solution GroupDocs...// Add annotation and save to file annotator . add ( strikeout...

    docs.groupdocs.com/annotation/java/add-strikeou...
  2. How to Convert DOCX to PPTX using C#

    You can find the directions to convert docx to pptx using C# in this topic. Moreover, we will help you to write an application to export docx to pptx in C#....Merger Product Family GroupDocs.Redaction...convert Word documents to other file formats that are supported....

    kb.groupdocs.com/conversion/net/how-to-convert-...
  3. Composing signature with radial gradient brush ...

     This article explains how to fill signature background with radial gradient brush...Merger Product Solution GroupDocs...Image }; // sign document to file signature . Sign ( "signed.pdf"...

    docs.groupdocs.com/signature/net/composing-sign...
  4. How to verify signatures with predicate functio...

    This article explains how to verify signatures using predicate functions (Func) with GroupDocs.Signature API to filter signatures before verification, optimizing performance by skipping unnecessary verification operations....Merger Product Solution GroupDocs...// Define the path to the PDF file. string filePath = Constants...

    docs.groupdocs.com/signature/net/verify-signatu...
  5. Extract data from Microsoft Office Excel spread...

    This article shows how to to extract data from Microsoft Office Excel spreadsheets....Merger Product Solution GroupDocs...Microsoft Office Excel Add-In File XLAM Microsoft Office Excel...

    docs.groupdocs.com/parser/java/extract-data-fro...
  6. 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....Merger Product Solution GroupDocs...true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  7. 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....Merger Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...
  8. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iMerger Product Solution GroupDocs...a particular package. Load a file to examine Get a collection...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  9. Create and edit new WordProcessing document | G...

    This article demonstrates how to create and edit WordProcessing documents using GroupDocs.Editor for .NET. It also covers supported formats like spreadsheets and presentations....Merger Product Solution GroupDocs...optionally save it to a physical file or return it via API. See also...

    docs.groupdocs.com/editor/net/create-document/
  10. Cache results | GroupDocs

    This article contains caching use-cases with GroupDocs.Viewer within your Java applications....Merger Product Solution GroupDocs...difference between rendering a file and getting the cached results:...

    docs.groupdocs.com/viewer/java/caching-results/