Sort Score
Result 10 results
Languages All
Labels All
Results 1,941 - 1,950 of 2,914 for

file editor

(0.05 sec)
  1. Working with metadata in Word Processing docume...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, etc. For the full list of supported document formats please refer to Supported document formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded document and extract some additional File format information. Load a WordProcessing document Extract the root metadata package Use the getWordProcessingType method to obtain File format information advanced_usage....Editor Product Solution GroupDocs...and extract some additional file format information. a WordProcessing...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Add arrow annotation | GroupDocs

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

    docs.groupdocs.com/annotation/java/add-arrow-an...
  3. Add area annotation | GroupDocs

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

    docs.groupdocs.com/annotation/java/add-area-ann...
  4. Convert to HTML with advanced options | GroupDocs

    Follow this guide and learn how to convert documents to HTML format with fixed layout, zoom and other customizations using GroupDocs.Conversion for Java....Editor Product Solution GroupDocs...password_protected.docx is sample file used in this example. Click...

    docs.groupdocs.com/conversion/java/convert-to-h...
  5. System requirements | GroupDocs

    Overview To produce and manipulate the documents, the machine that GroupDocs.Classification for .NET runs on doesn’t need to have Adobe Acrobat, Microsoft Office or OpenOffice installed: GroupDocs.Classification for .NET has their own document processing engine. The machine that GroupDocs.Classification for .NET runs on doesn’t need to have Adobe Acrobat, Microsoft Office or OpenOffice installed: GroupDocs.Classification for .NET has their own document processing engine. Supported Operating System Windows Microsoft Windows 2000 Professional (x64) Microsoft Windows 2000 Server (x64) Microsoft Windows 2003 Server (x64) Microsoft Windows 2008 Server (x64) Microsoft Windows 2012 Server (x64) Microsoft Windows 2012 R2 Server (x64) Microsoft Windows 2016 Server (x64) Microsoft Windows 2019 Server (x64) Microsoft Windows Vista (x64) Microsoft Windows XP (x64) Microsoft Windows 7 (x64) Microsoft Windows 8, 8....Editor Product Solution GroupDocs...code in your app configuration file (inside assemblyBinding element...

    docs.groupdocs.com/classification/net/system-re...
  6. Composing signature with radial gradient brush ...

     This article explains how to fill signature background with radial gradient brush...Editor Product Solution GroupDocs...Image ); // sign document to file SignResult signResult = signature...

    docs.groupdocs.com/signature/java/composing-sig...
  7. Document passwords | GroupDocs

    This article gives the knowledge of the API methods which can be used to perform operations about document passwords or password dictionary using Java....Editor Product Solution GroupDocs...clear (); } String path = new File ( "c:\\MyIndex\\Protected.pdf"...

    docs.groupdocs.com/search/java/document-passwords/
  8. Extract attachments from PDF portfolios | Group...

    Extract attachments from PDF portfolios To extract attachments from emails getContainer method is used. This method returns the collection of ContainerItem objects. Here are the steps to extract an attachment text from PDF Portfolios: Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and get container item names, sizes and obtain content....Editor Product Solution GroupDocs...attachments ) { // Print the file path System . out . println...

    docs.groupdocs.com/parser/java/extract-attachme...
  9. Composing signature with solid brush background...

     This article explains how to fill signature background with solid brush...Editor Product Solution GroupDocs...Image ); // sign document to file SignResult signResult = signature...

    docs.groupdocs.com/signature/java/composing-sig...
  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....Editor Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

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