GroupDocs.Redaction for .NET 25.12 Release Notes
This page contains release notes for GroupDocs.Redaction for .NET 25.12
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
| Key | Summary | Category |
|---|---|---|
| REDACTIONNET-696 | Implement support for Presentation POTM, POTX, and OTP formats | Enhancement |
| REDACTIONNET-691 | Unable to open POTM file after redaction | Bug |
| REDACTIONNET-693 | Missing color redactions in WordProcessing documents when the required fonts are not installed | Bug |
| REDACTIONNET-695 | Incorrect definition of Presentations output formats | Bug |
Public API and Backward Incompatible Changes
This section lists the public API changes introduced in GroupDocs.Redaction for .NET 25.12. It includes not only new and obsolete public methods but also descriptions of any behind-the-scenes changes in GroupDocs.Redaction that may affect existing code. Any modifications that could be considered regressions or alter existing behavior are particularly important and are documented here.
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();
}