Edit HTML in C++

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

Edit HTML using Aspose.Slides

Aspose.Slides for C++ is a powerful C++ library used to manipulate and edit presentations, HTML documents, and other files. You can edit an HTML doc by adding a new line of text to it.

Edit HTML in C++

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

C++ code for editing HTML


auto pres = System::MakeObject<Presentation>();

pres->get_Slides()->RemoveAt(0);
pres->get_Slides()->AddFromHtml(htmlText1);

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"page.html", SaveFormat::Html5);

How to edit HTML 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 HTML document you want to edit.

  5. Add a new line of text.

  6. Save the changed HTML file.

Edit other files

You can also edit files in other formats