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

Redact ODP using C++

Build your own C++ apps to find and replace text in presentation files using server-side APIs. Learn how to search and replace text in content, comments or metadata of ODP presentations

Redact ODP Presentation via C++

A basic document search and replace text in contents, comments, slide notes or metadata with Aspose.Slides for C++ APIs can be done with just few lines of code. Find and replace text in PowerPoint and OpenOffice. Edit text, comments, metadata in presentation via regexp data matching.

Redact ODP Presentation using C++


auto presentation = System::MakeObject<Presentation>(u"welcome-to-powerpoint.odp");

SlideUtil::FindAndReplaceText(presentation, true, u"PowerPoint", u"Aspose.Slides", nullptr);
presentation->Save(u"replaced.odp", SaveFormat::Odp);	

How to Redact ODP via C++

These are the steps to Redact ODP files.

  1. Load ODP with an instance of Presentation.

  2. Use FindAndReplaceText method to find and replace text.

  3. Save result in ODP format

Online ODP Redaction Live Demos