Hi,
One of our module in our application, is using Interop to create a powerpoint file and since we have Aspose.Slides license we are trying to get rid of interop and use aspose.slides.
We came across below line of code in interop, we believe it is trying to apply a default theme/template to an existing presentation or new presentation object. How do we achieve the same using Aspose.slides?
Microsoft.Office.Interop.PowerPoint.Presentation presentation = powerpointApp.Presentations.Add(MsoTriState.msoTrue);
if (applyTemplateFlag)
presentation.ApplyTemplate(templateName);
FYI, we found some documentation from Microsoft site for above function.
https://learn.microsoft.com/en-us/previous-versions/office/office-12/ff761593(v=office.12)
Please let us know, How do we achieve the same using Aspose.slides?
Thanks,
Prathap