Edit HTML in C#
Edit HTML documents in C# using Aspose.Slides for .NET.
Edit HTML Using Aspose.Slides
Aspose.Slides for .NET can load HTML into a presentation, update slide content, and save the result back to HTML.
Edit HTML in C#
Using Aspose.Slides for .NET , you can update text imported from an HTML document with a few lines of C# code.
C# code for editing HTML
using var presentation = new Presentation();
presentation.Slides.RemoveAt(0);
presentation.Slides.AddFromHtml("page.html");
var slide = presentation.Slides[0];
if (slide.Shapes[0] is IAutoShape shape && shape.TextFrame is not null)
{
shape.TextFrame.Text = "New text";
}
presentation.Save("page.html", SaveFormat.Html);