Sort Score
Result 10 results
Languages All
Labels All
Results 2,351 - 2,360 of 5,836 for

groupdocs.viewer,

(0.32 sec)
  1. Basic usage | GroupDocs

    Basic usage examples for GroupDocs.Parser for .NET. Learn how to extract text, metadata, images, table of contents, and parse data from documents in C#....Basic usage examples for GroupDocs.Parser for .NET. Learn how to extract text, metadata, images, table of contents, and parse data from documents in C#.

    docs.groupdocs.com/parser/net/basic-usage/
  2. Get extended information on the summary page | ...

    Learn how to enable extended information on the summary page using GroupDocs.Comparison for Python via .NET....Learn how to enable extended information on the summary page using GroupDocs.Comparison for Python via .NET.

    docs.groupdocs.com/comparison/python-net/get-ex...
  3. Compare bookmarks in Word documents | GroupDocs

    Learn how to compare bookmarks in Word documents using GroupDocs.Comparison for Python via .NET....Learn how to compare bookmarks in Word documents using GroupDocs.Comparison for Python via .NET.

    docs.groupdocs.com/comparison/python-net/compar...
  4. 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....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.

    docs.groupdocs.com/redaction/java/save-overwrit...
  5. Get supported file formats | GroupDocs

    This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Java....This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Java.

    docs.groupdocs.com/redaction/java/get-supported...
  6. 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(); }...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(); }

    docs.groupdocs.com/redaction/java/save-in-raste...
  7. Get supported file formats | GroupDocs

    This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications....This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications.

    docs.groupdocs.com/comparison/net/get-supported...
  8. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks API....This article explains how to load from local disk while using GroupDocs. Watermarks API.

    docs.groupdocs.com/watermark/net/load-from-loca...
  9. Save document to the specified stream | GroupDocs

    This article explains how to save document to the specified stream while using GroupDocs. Watermarks API....This article explains how to save document to the specified stream while using GroupDocs. Watermarks API.

    docs.groupdocs.com/watermark/net/save-document-...
  10. Advanced usage | GroupDocs

    Learn about advanced GroupDocs.Watermark usage. Please find advanced details how to customize your watermarks, search, modify and remove existing watermarks. Articles in this section Adding watermarks More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Watermark for Python via .NET examples GroupDocs.Watermark for .NET examples GroupDocs.Watermark for Java examples Free online document watermarking App Along with a full-featured ....Learn about advanced GroupDocs.Watermark usage. Please find advanced details how to customize your watermarks, search, modify and remove existing watermarks. Articles in this section Adding watermarks More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Watermark for Python via .NET examples GroupDocs.Watermark for .NET examples GroupDocs.Watermark for Java examples Free online document watermarking App Along with a full-featured .

    docs.groupdocs.com/watermark/python-net/advance...