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++
Install Aspose.Slides for C++. See Installation .
Add the library as a reference in your project.
Create an instance of the Presentation class.
Load the PPT presentation you want to edit.
Add a new line of text.
Save the changed PowerPoint file.