Sort Score
Result 10 results
Languages All
Labels All
Results 4,651 - 4,660 of 15,660 for

file

(0.2 sec)
  1. 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-...
  2. 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-...
  3. 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...
  4. 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...
  5. Load from stream | GroupDocs

    This article explains how to load a document from a Stream with GroupDocs.Viewer within your .NET applications....stream without saving it as a file on a disk. You can use this...

    docs.groupdocs.com/viewer/net/load-document-fro...
  6. Signing specific pages in the multipage documen...

    This article explains how to sign specific pages in the multipage documents...3 } } }; // sign document to file SignResult signResult = signature...

    docs.groupdocs.com/signature/net/sign-specific_...
  7. Handling password required exception | GroupDocs

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

    docs.groupdocs.com/signature/net/handling-passw...
  8. Handling password required exception | GroupDocs

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

    docs.groupdocs.com/signature/java/handling-pass...
  9. Add ellipse annotation | GroupDocs

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

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

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

    docs.groupdocs.com/annotation/java/add-text-red...