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....app conholdate.com conholdate.cloud conholdate.app containerize...
This page describes how to obtain supported file formats list when annotate documents and images with GroupDocs.Annotation within your Java applications....app conholdate.com conholdate.cloud conholdate.app containerize...
This article explains how to remove password for PDF, Word, Excel, PowerPoint documents by using GroupDocs.Merger for Java. ...app conholdate.com conholdate.cloud conholdate.app containerize...
This article explains how to check whether PDF, Word, Excel, PowerPoint document is password protected or not, and how to do this using GroupDocs.Merger for Java....app conholdate.com conholdate.cloud conholdate.app containerize...
The articles in this section describe advanced search index related topics.
You will find details about index management and advanced options:
More resources GitHub examples You may easily run the code from documentation articles and see the features in action in our GitHub examples:
GroupDocs.Search for .NET examples
GroupDocs.Search for Java examples
Free online document search App Along with full featured .NET library we provide simple, but powerful free Apps....app conholdate.com conholdate.cloud conholdate.app containerize...
This article explains how to load PDF, Word(.doc, .docx), Excel(.xls,.xlsx), PowerPoint(.ppt, .pptx) documents from stream when using GroupDocs.Merger for .NET....app conholdate.com conholdate.cloud conholdate.app containerize...
Use GroupDocs.Signature libraries to e-Sign documents with different signature types, protect documents with digital certificates, generate QR Codes and barcodes using C# or Java languages....app conholdate.com conholdate.cloud conholdate.app containerize...
This article explains how to sign document with Metadata electronic signatures using extended options with GroupDocs.Signature API....app conholdate.com conholdate.cloud conholdate.app containerize...
Note This feature is supported by version 19.5. or greater Note The code uses some of the objects defined in The Business Layer. Loading of template documents from HTML with resources GroupDocs.Assembly provides a great feature which is loading of HTML template documents referencing external resource files to be assembled and saved to non-HTML formats. Since version 19.5, when loading an HTML document from a file, its containing folder is used as a base URI to resolve external resource files’ relative URIs to absolute ones by default as shown in the following example....app conholdate.com conholdate.cloud conholdate.app containerize...
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(); }...app conholdate.com conholdate.cloud conholdate.app containerize...