Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Streamline document redaction in your C# apps with the latest GroupDocs.Redaction for .NET 23.6 (MSI) release. This update delegates greater control over redaction scope to developers and allows them to define specific page ranges and areas for sensitive information removal.
Define page range and specific areas within a page for redaction with this release of the .NET document redaction API. With this update, you can ascertain a targeted approach to information protection. Check out the C# code snippet given below to learn how to apply selective redaction in PDFs.
using (Redactor redactor = new Redactor("Sample.pdf")) { // Get the actual size information for the last page: IDocumentInfo info = redactor.GetDocumentInfo(); PageInfo lastPage = info.Pages[info.PageCount - 1]; ReplacementOptions options = new Redactions.ReplacementOptions("[secret]"); options.Filters = new RedactionFilter[] { new PageRangeFilter(PageSeekOrigin.End, 0, 1), new PageAreaFilter(new System.Drawing.Point(0, lastPage.Height/2), new System.Drawing.Size(lastPage.Width, lastPage.Height / 2)) }; RedactorChangeLog result = redactor.Apply(new ExactPhraseRedaction("dolor", options)); if (result.Status != RedactionStatus.Failed) { redactor.Save(); }; }
Source*
The compatibility with Aspose.PDF versions 22.8 and above has been improved in GroupDocs.Redaction for .NET 23.6 to ensure seamless integration in your projects.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Redaction for .NET 23.6 Release Notes.