Sort Score
Result 10 results
Languages All
Labels All
Results 4,701 - 4,710 of 15,670 for

file

(0.3 sec)
  1. 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....optionally save it to a physical file or return it via API. See also...

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

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

    docs.groupdocs.com/viewer/java/caching-results/
  3. Handling incorrect document password exception ...

    This article shows how to handle incorrect document password exception with GroupDocs.Signature API....); // try to sign document to file, we expect for PasswordRequiredExce...

    docs.groupdocs.com/signature/java/handling-inco...
  4. GroupDocs.Signature Product Family

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular File formats....API for Java: Download – JAR Files Documentation – API Docs Product...sign electronic docs of various file formats. Java developers can...

    blog.groupdocs.com/categories/groupdocs.signatu...
  5. Reverse Image Search in Documents

    Build your app with reverse image search functionality in documents and image Files....within documents or standalone files. Here’s a step-by-step guide...images embedded in document files or container formats like .zip...

    blog.groupdocs.com/search/reverse-image-search/
  6. Get extended information on the summary page | ...

    This article explains how to get extended information about comparison of documents on the summary page with GroupDocs.Comparison for Node.js via Java....changes between source and target files and display changes on the separate...'@groupdocs/groupdocs.comparison' ); // Define file paths for source, target and...

    docs.groupdocs.com/comparison/nodejs-java/get-e...
  7. 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#....convert Word documents to other file formats that are supported....

    kb.groupdocs.com/conversion/net/how-to-convert-...
  8. 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....true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  9. 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.... a file to examine Get a collection...

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

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