Sort Score
Result 10 results
Languages All
Labels All
Results 2,651 - 2,660 of 5,711 for

file merger

(0.15 sec)
  1. Install GroupDocs.Conversion for Node.js via Ja...

    Install GroupDocs.Conversion for Node.js via Java using npm or an offline package. Includes prerequisites, Java setup, verification, and troubleshooting....Merger Product Solution GroupDocs...$env:JAVA_HOME = "C:\Program Files\Java\jdk-17" $env:Path = "$...

    docs.groupdocs.com/conversion/nodejs-java/insta...
  2. How to save document with password | GroupDocs

    This article explains how to save document with password protection....Merger Product Solution GroupDocs...false }; // sign document to file signature . Sign ( "SignedProtected...

    docs.groupdocs.com/signature/net/save-signed-do...
  3. Sign VBA macroses with Digital signature | Grou...

    This article explains how to e-sign VBA macros in the excel document using .Net C# with GroupDocs.Signature API....Merger Product Solution GroupDocs...digitalVBA ); // sign document to file SignResult signResult = signature...

    docs.groupdocs.com/signature/net/sign-vba-macro...
  4. Pre-rasterize | GroupDocs

    This article shows how to pre-rasterize a document using the redaction API....Merger Product Solution GroupDocs...)) { // Make changes to the file as a rasterized PDF, e.g. uisng...

    docs.groupdocs.com/redaction/net/pre-rasterize/
  5. 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-...
  6. Add ellipse annotation | GroupDocs

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

    docs.groupdocs.com/annotation/java/add-ellipse-...
  7. Add text redaction annotation | GroupDocs

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

    docs.groupdocs.com/annotation/java/add-text-red...
  8. eSign Document with Stamp Signature | GroupDocs

    This article explains how to sign a document electronically with generated Stamp signatures by GroupDocs.Signature for Python via .NET API....Merger Product Solution GroupDocs...sample.docx The following sample file is used in this example: Advanced...

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

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