Sort Score
Result 10 results
Languages All
Labels All
Results 281 - 290 of 6,745 for

redaction

(0.03 sec)
  1. Load from local disc | Documentation

    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....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/load-from-loc...
  2. Working with annotation replies | Documentation

    The page describes how to manage replies for different document types using GroupDocs.Annotation for .NET API....Redaction Product Solution GroupDocs...during document review and redaction. Different software vendors...

    docs.groupdocs.com/annotation/net/working-with-...
  3. Free Support Policies - Free Support Forum - gr...

    Free Support Since we are developers ourselves, we understand how frustrating it is when a technical issue or a quirk in the software stops you from doing what you need to do. We’re here to solve problems, not create t…...in IRedactionCallback Does redaction SDK support GraalVM? How to...5 pages to PDF Duplicate redaction replacement text in RTF document...

    forum.groupdocs.com/t/free-support-policies/6034
  4. Save overwriting original file | Documentation

    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....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-overwrit...
  5. Opacity and Fixed SVG Path Properties Introduce...

    GroupDocs team is excited to announce one more monthly release of document annotation API, where new properties are introduced, these properties are included on users demand to facilitate them as our users always expects something new and extra features form our APIs compare to other available prodcts. The latest GroupDocs.Annotation for .NET 17.7.0 API now provides support to set Opacity and SVG Path for all major document formats like, PDF, Diagram, Slide and Words file formats etc....import from Diagram Area Redaction import annotation from diagram...

    blog.groupdocs.com/annotation/opacity-and-fixed...
  6. Redact in Java on GroupDocs Blog | Document Aut...

    Redact in Java on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Redact in Java on GroupDocs Blog | Document Automation Solutions for .NET & Java Develo......Redact in Java on GroupDocs Blog | Document Automation Solutions...Developers Recent content in Redact in Java on GroupDocs Blog |...

    blog.groupdocs.com/ja/tag/redact-in-java/index.xml
  7. Annotate Word Documents with GoupDocs.Annotatio...

    GroupDocs Team is pleased to announce new release of GroupDocs.Annotation for .NET 3.1.0 API. The latest release of our Document Annotation API provides new features, Improvement’s and fixes for existing features. GroupDocs.Annotation 3.1.0 also included support for word document format with all major annotation types (Highlight Text, Area Annotation, and Strikeout etc). Please download the latest release to enhance your application with document annotation features New Features and Support for Word DocumentIn this release All Annotations for Words Document is now supported with improvement and enhancement....Text replacement Resource redaction Export To Words Document Annotation...

    blog.groupdocs.com/annotation/annouced-groupdoc...
  8. Save in rasterized PDF | Documentation

    This article demonstrates that how to save the document as a rasterized PDF file...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/save-in-raster...
  9. GroupDocs.Annotation for .NET Can Now Be Easily...

    Good news for Orchard developers and site owners – after a successful release of the module that integrates GroupDocs.Viewer for .NET into Orchard CMS, we’re pleased to inform you that we’ve recently released yet another module - this time for integrating the .NET version of the GroupDocs.Annotation library. Like GroupDocs.Viewer, the GroupDocs.Annotation for .NET library supports all common business document formats, provides cross-platform compatibility and doesn’t require any installations on the client side....underline and strikethrough, redaction, watermarks, ruler, etc.)...

    blog.groupdocs.com/annotation/groupdocs-annotat...
  10. Load from Stream | Documentation

    This article shows that how to load file from stream using Redaction API...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/load-from-stream/