Sort Score
Result 10 results
Languages All
Labels All
Results 1,521 - 1,530 of 4,610 for

document security

(0.08 sec)
  1. Loading specific file formats | GroupDocs

    In some cases it’s required to specify the Document format manually to guarantee correct output produced by GroupDocs.Parser. The following are the cases when the Document format must be specified manually: Markdown Documents MHTML Documents OTP Documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the Document format for Markup Document. Instantiate the LoadOptions object and pass the Document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Parser Product Family /...

    docs.groupdocs.com/parser/java/loading-specific...
  2. Merging Table Cells Dynamically | GroupDocs

    Note This feature is supported by version 19.1 or greater Note The code uses some of the objects defined in The Business Layer. Merging Table Cells Dynamically Using GroupDocs.Assembly for Java, you can merge table cells with equal textual contents within your reports dynamically using cellMerge tags. Syntax of a cellMerge tag is defined as follows: <> Warning A horz switch is optional. If the switch is present, it denotes a cell merging operation in a horizontal direction....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...

    docs.groupdocs.com/assembly/java/merging-table-...
  3. Hello, World! | GroupDocs

    Get started with GroupDocs.Watermark for Python via .NET by creating and running a minimal example....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Watermark Product Family...

    docs.groupdocs.com/watermark/python-net/hello-w...
  4. How to verify signatures with LINQ queries | Gr...

     This article explains how to verify signatures with LINQ query with GroupDocs.Signature API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/net/verify-signatu...
  5. Migration Notes | GroupDocs

    How to migrate from earlier versions of GroupDocs.Merger for Java...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Merger Product Family /...

    docs.groupdocs.com/merger/java/migration-notes/
  6. Render to PNG or JPEG | GroupDocs

    With GroupDocs.Viewer for .NET you can render Documents to PNG and JPEG formats....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Viewer Product Family /...

    docs.groupdocs.com/viewer/net/rendering-to-png-...
  7. Delete Signatures of the certain type | GroupDocs

    This article explains how to delete signature of the certain type with GroupDocs.Signature API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/java/delete-signat...
  8. Use Cases | GroupDocs

    Practical use cases and real-world examples demonstrating how to use GroupDocs.Comparison for Node.js via Java in various scenarios, including legal Document comparison and performance optimization....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Comparison Product Family...

    docs.groupdocs.com/comparison/nodejs-java/use-c...
  9. Working with String Template | GroupDocs

    GroupDocs.Assembly API allows you to use a string as input and output template, instead of Document. This feature improves programmability while working with strings instead of Documents, the resultant output string can be used as per the application needs. Follow these steps to using a string as input and output template: Initialize DocumentAssembler Define sourceString @"«[yourValue]»" Convert sourceString to sourceBytes using Encoding.UTF8.GetBytes(sourceString) GettargetBytes using DocumentAssembler.AssembleDocument() Get targetString using Encoding.UTF8.GetString(targetBytes)...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...

    docs.groupdocs.com/assembly/net/working-with-st...
  10. Load password-protected file | GroupDocs

    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(); }...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/java/load-password...