Advanced GroupDocs.Annotation for Python via .NET topics — load documents from a path, stream, or password-protected file, save with annotation-type and page-range filters, and render page previews....Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...
Configure how GroupDocs.Comparison for .NET saves the result document — choose the metadata source (source/target/user-defined), set an output password, or save in a different file format....Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...
Learn how to generate only the summary page in the comparison result using GroupDocs.Comparison for Python via .NET....Search Product Solution GroupDocs.Parser Product Solution GroupDocs...
Learn how to protect, inspect, and manage document passwords for PDF, Word, Excel, and PowerPoint files using GroupDocs.Merger for Python via .NET....Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...
This article explains how to load password-protected PDF, Word, Excel, PowerPoint documents when using GroupDocs.Merger for .NET....Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...
Load from local disc GroupDocs.Redaction.Redactor class is a main class in Redaction API, providing functionality to open a document. When document is located on the local disk, you can pass its path to *Redactor *class constructor.
The following example demonstrates how to open a document from local disc:
final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor....Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...
Load from Stream As an alternative to a local file, Redactor can open a document from stream.
The following example demonstrates how to load and redact a document using Stream:
final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Metadata Product Solution GroupDocs.Parser Product Solution GroupDocs...