Sort Score
Result 10 results
Languages All
Labels All
Results 4,611 - 4,620 of 9,321 for

document viewer

(0.06 sec)
  1. Add dropdown component | GroupDocs

    The page describes how to add dropdown component to a Document using GroupDocs.Annotation for Java....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Annotation Product...

    docs.groupdocs.com/annotation/java/add-dropdown...
  2. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/load-from-loca...
  3. Merge PDF files using C#

    Learn how to merge PDF files using C# programming. Streamline Document management with code of how to combine PDF files in C# without installing extra software....Viewer Product Family GroupDocs.Comparison...the digital era, managing documents efficiently is a necessity...

    kb.groupdocs.com/merger/net/merge-pdf-files-usi...
  4. Working with resources | GroupDocs

    This article demonstrates and explains different operations with resources, including retrieving, adjusting and saving them in different scenarios when editing Documents with GroupDocs.Editor for .NET....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...

    docs.groupdocs.com/editor/net/working-with-reso...
  5. Save in rasterized PDF | GroupDocs

    The following example demonstrates how to save the Document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  6. Search index events | GroupDocs

    The OperationFinished event occurs when an index operation completes – indexing, updating, merging, or optimizing (segment merging)...Viewer Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/search-in...
  7. Scan QR Code from DOC using C#

    Quickly learn about how to scan QR Code from DOC using C# without installing extra software. Also, code example will be provided to extract QR Code from DOC in C#....Viewer Product Family GroupDocs.Comparison...Scanning QR codes from Word documents ( DOC ) is a practical solution...

    kb.groupdocs.com/parser/net/scan-qrcode-from-do...
  8. GroupDocs.Redaction for Java | GroupDocs

    A Java API for redaction of sensitive and classified information from the Documents. You can redact in adobe pdf, redact in excel or in many of different file formats....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/
  9. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted Document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  10. Extract formatted text from documents | GroupDocs

    Learn how to extract formatted text as HTML, Markdown, or PlainText from PDF, Word, Excel, and 50+ Document formats using GroupDocs.Parser for .NET. Preserve formatting with C# code examples....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/extract-formatted...