Sort Score
Result 10 results
Languages All
Labels All
Results 2,541 - 2,550 of 3,592 for

document assembly

(0.07 sec)
  1. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk JavaScript try { const metadata = new groupdocs.metadata.Metadata("input.one"); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/load-fr...
  2. Load custom fonts. | Documentation

    The page describes how to load custom fonts....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Annotation Product...

    docs.groupdocs.com/annotation/net/loading-custo...
  3. Convert JSON as a data source to a spreadsheet ...

    Learn how to convert a JSON Document as a data source to a spreadsheet using GroupDocs.Conversion for .NET....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/convert-json-...
  4. Optimize the PDF file resources | Documentation

    This topic describes how to optimize PDF file using the GroupDocs.Viewer Java API to reduce size....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  5. Load password-protected file | Documentation

    Load password-protected file In order to open password-protected Documents, you have to pass your password to LoadOptions class constructor or assign it to its Password property of an instance of LoadOptions class: LoadOptions loadOptions = new LoadOptions("mypassword"); final Redactor redactor = new Redactor("protected_sample.docx", loadOptions); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); redactor.save(); } finally { redactor.close(); }...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-password...
  6. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Node.js via Java search engine...Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/adding-...
  7. Changing Target File Format | Documentation

    Note This feature is supported by version 18.9. or greater Note The code uses some of the objects defined in The Business Layer. Changing Target File Format GroupDocs.Assembly provides a powerful feature to change the target file format of an assembled Document using file extension or explicit specifying. GroupDocs.Assembly API provides the ability to change target file format when assembling the following file formats: Word Processing Documents Spreadsheet Documents Presentation Documents Email Documents Text Documents Supported output file formats depending on input file formats can be found at this page....Assembly Product Solution GroupDocs...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...

    docs.groupdocs.com/assembly/java/changing-targe...
  8. Save Assembled Word Processing, Presentation, S...

    The HTML format is widely used for creating the webpages or, in other words, the HTML files. These days, every operating system, whether it be of desktop or mobile, contains the built-in web browser that supports viewing the HTML files. Other than that, many free web browsers are also available in the market. This means that any information or the content that is available in the form of HTML pages can easily be viewed just having installed a web browser....where you have some Word documents created in MS Word and you...the HTML form of that Word document then it can be viewed within...

    blog.groupdocs.com/assembly/save-assembled-word...
  9. PDF & Word Reports from CSV Data using C# | .NE...

    Convert CSV to PDF & Word formats with templates using C#. Automate PDF & DOC/DOCX reports generation using .NET Reporting API by GroupDocs....Assembly provides the .NET reporting...I have used this GroupDocs.Assembly for .NET for generating reports...

    blog.groupdocs.com/assembly/generate-reports-fr...
  10. 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....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

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