GroupDocs.Redaction for .NET 25.12 Release Notes

Major Features

There are the following improvements in this release:

  • Enhanced support for Presentation formats, including added support for POTM, POTX, and OTP.
  • Fixed inconsistent content in Presentation output files.
  • Fixed issues with color redactions in WordProcessing documents.

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
REDACTIONNET-696Implement support for Presentation POTM, POTX, and OTP formatsEnhancement
REDACTIONNET-691Unable to open POTM file after redactionBug
REDACTIONNET-693Missing color redactions in WordProcessing documents when the required fonts are not installedBug
REDACTIONNET-695Incorrect definition of Presentations output formatsBug

Public API and Backward Incompatible Changes

Public API changes

No changes

Usage

GroupDocs.Redaction fully supports the newly added Presentation formats (POTM, POTX, OTP), along with all previously supported document types.


// Define replacement options and redaction parameters.
var redaction_txt = new ExactPhraseRedaction("phone number", new ReplacementOptions("[replaced]"));

// Apply redaction to a POTX file and save the result.
using (var redactor = new Redactor("sample.potx"))
{
    redactor.Apply(redaction_txt);
    var so =  new SaveOptions() { AddSuffix = true, RasterizeToPDF = false, RedactedFileSuffix = "file_redacted" };
    var out_file = redactor.Save();
}