PPT PPTX ODP POT PPSX
Aspose.Slides  for C++
PPT

Redact PPT using C++

Use Aspose.Slides for C++ to find and replace sensitive text in presentation files without Microsoft PowerPoint.

Redact PPT Presentation via C++

Aspose.Slides for C++ lets you redact PPT presentations by replacing sensitive text in slides. Use SlideUtil::FindAndReplaceText with a Presentation object to search the presentation and replace matching text before saving the updated file.

Redact PPT Presentation using C++

auto presentation = MakeObject<Presentation>(u"presentation.ppt");

SlideUtil::FindAndReplaceText(presentation, true, u"Confidential", u"[redacted]", nullptr);
presentation->Save(u"redacted-presentation.ppt", SaveFormat::Ppt);
presentation->Dispose();

How to Redact PPT via C++

These are the steps to redact PPT files.

  1. Load the PPT file with the Presentation class.

  2. Use the FindAndReplaceText method to find and replace sensitive text.

  3. Save the redacted file with SaveFormat::Ppt.

Online PPT Redaction Live Demos