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

file editor

(0.08 sec)
  1. Remove annotation from document | Documentation

    This page describes how to remove annotations from document when collaborate, edit and annotate documents using GroupDocs.Annotation for Java....Editor Product Solution GroupDocs.... None ); // Save result to file annotator . save ( "outputPath"...

    docs.groupdocs.com/annotation/java/remove-annot...
  2. How to save PDF document with other format | Do...

    This article explains how to save signed PDF document with various File formats by GroupDocs.Signature API....Editor Product Solution GroupDocs...true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  3. Getting known property descriptors | Documentation

    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....Editor Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...
  4. GroupDocs.Annotation for .NET | Documentation

    API to annotate text or images in your documents using C#. It supports PDF, Microsoft Word DOCX, Excel XLSX and PowerPoint. PPTX...Editor Product Solution GroupDocs...Develop Functions GUIDE Retrieve File Info Read Annotations Remove...

    docs.groupdocs.com/annotation/net/
  5. Save with default options | Documentation

    The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF File will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor....Editor Product Solution GroupDocs...its extension (.PDF). The PDF file will be overwritten. The following...

    docs.groupdocs.com/redaction/java/save-with-def...
  6. Load document from InputStream | Documentation

    This article explains how to load PDF, Word, Excel, PowerPoint documents from stream when using GroupDocs.Merger for Java....Editor Product Solution GroupDocs...overhead of saving InputStream as a file on disk, provides a way to work...

    docs.groupdocs.com/merger/java/load-document-fr...
  7. Change page orientation | Documentation

    Following this guide you will learn how to change Word document page orientation to Portrait or Landscape using GroupDocs.Merger for Java....Editor Product Solution GroupDocs...to it; Call method specifying file path to save resultant document...

    docs.groupdocs.com/merger/java/change-page-orie...
  8. Cache results | Documentation

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

    docs.groupdocs.com/viewer/nodejs-java/caching-r...
  9. Getting known property descriptors | Documentation

    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;iEditor Product Solution GroupDocs...a particular package. Load a file to examine Get a collection...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  10. Comparing Folders | Documentation

    This page describes how to compare two folders and find out which Files/folders were deleted, added or modified....Editor Product Solution GroupDocs...processing result in the resulting file are described below. Instantiate...

    docs.groupdocs.com/comparison/net/compare-folders/