Edit PPT in C++

High-speed and cross-platform C++ library for editing PPT using C++ code

Edit PPT using Aspose.Slides

Aspose.Slides for C++ is a powerful C++ library used to manipulate and edit presentations. You can edit a PPT presentation by adding a new line of text to it.

Edit PPT in C++

Using Aspose.Slides for C++ , you can add a new line of text to a PPT document with just a few lines of code.

C++ code for editing PPT


auto pres = System::MakeObject<Presentation>(u"pres.ppt");

auto slide = pres->get_Slides()->idx_get(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 10.0f, 10.0f, 100.0f, 50.0f);
shape->get_TextFrame()->set_Text(u"New text");

pres->Save(u"pres.pdf", SaveFormat::Ppt);

How to edit PPT in C++

  1. Install Aspose.Slides for C++. See Installation .

  2. Add the library as a reference in your project.

  3. Create an instance of the Presentation class.

  4. Load the PPT presentation you want to edit.

  5. Add a new line of text.

  6. Save the changed PowerPoint file.

Edit other files

You can also edit files in other formats