Hello,
I'm currently evaluating aspose.slides for my client, to export PPT to svg.
Our base platform is powerpoint add-in(vsto).
Could I use Application.ActivePresentation to Aspose.Slides.Presentation like as the following ? Is there any workaround?
ex)
var vsto = Application.ActivePresentation;
var Presentation presentation = ConvertFromVSTO_ToAspose(vsto);//something like that
using (presentation)
{
HtmlOptions htmlOpt = new HtmlOptions();
htmlOpt.HtmlFormatter = HtmlFormatter.CreateDocumentFormatter("", false);
// Saving the presentation to HTML
presentation.Save(dataDir + "ConvertWholePresentationToHTML_out2.html", SaveFormat.Html, htmlOpt);
}
Hi,
Thanks for inquiring Aspose.Slides.
I have observed the requirements shared by you and like to share that there is no interface between Aspose.Slides and VSTO PowerPoint add-in as both are separate APIs. The only option is that you may generate the presentation using Aspose.Slides and then try loading that using VSTO add-in. I hope the shared information will be helpful.
Many Thanks,