Sort Score
Result 10 results
Languages All
Labels All
Results 6,161 - 6,170 of 10,281 for

document watermark

(0.07 sec)
  1. 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(); }...Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-password...
  2. List and print all supported file types | Docum...

    This article explains how to list and print file types supported by GroupDocs.Viewer for .NET...Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/how-to-list-and-p...
  3. Search flow | Documentation

    This article shows the internal stages of each search operation using Java search API....Watermark Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/search-flow/
  4. C# Demo Project of an ASP.NET PDF Viewer Built ...

    Building a simple ASP.NET PDF viewer is quite a trivial task. There are tens of different open source projects across the web that offer a quick and free solution to display PDF Documents in both ASP.NET MVC and Web Forms. Often a simple implementation of a PDF viewer is all you actually need. But things become a lot more complicated when the viewer needs to meet your customer’s business requirements....free solution to display PDF documents in both ASP.NET MVC and Web...security for their confidential documents. You need to prevent any access...

    blog.groupdocs.com/viewer/asp-net-pdf-viewer-bu...
  5. Show Revisions | Documentation

    This article explains how to customize the display of revisions in the output Document in GroupDocs.Comparison for .NET....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/show-revisions/
  6. Calculate Formula while Assembling Spreadsheet ...

    Note This feature is only compatible with GroupDocs.Assembly for .NET 3.3.0 or later releases. Note The code uses some of the objects defined in The Business Layer. The Recipe Set up the source Document template path Set up destination report path Instantiate DocumentAssembler class Set options, DocumentAssemblyOptions.UpdateFieldsAndFormulas Generate report Download Template Get the template from here. Update-Fomula.xlsx The Code...Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/calculate-formu...
  7. Setting author of changes | Documentation

    This article explains how to set author of changes name in the resulting Document in GroupDocs.Comparison for Node.js via Java....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/nodejs-java/setti...
  8. Indexing metadata of documents | Documentation

    API allows creating of full-text and / or metadata index on Documents. To index only metadata without main content of Documents, you only need to set IndexType.MetadataIndex when creating an index....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/indexing-metadat...
  9. Updating Fields while Assembling Word Processin...

    Note This feature is only compatible with GroupDocs.Assembly for .NET 3.3.0 or later releases. Note The code uses some of the objects defined in The Business Layer. The Recipe Set up the source Document template path Set up destination report path Instantiate DocumentAssembler class Set options, DocumentAssemblyOptions.UpdateFieldsAndFormulas Generate report Download Template Get the template from here. Update_Field_XML.docx The Code...Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/updating-fields...
  10. Use advanced logging | Documentation

    You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-advanced-...