I have the most simple problem to which I cannot find a solution from any help file, demo or forum post.
Dim pres1 As Aspose.Slides.Pptx.PresentationEx
pres1 = New Aspose.Slides.Pptx.PresentationEx(“c:\example.pptx”)
Dim slide1 As Aspose.Slides.Pptx.SlideEx
slide1 = pres1.Slides(pres1.Slides.AddEmptySlide(pres1.LayoutSlides(0)))
As the users can change the slide template themselves I have no knowledge what number of the LayoutSlides is the one that i would like to use - the number 0 seems always be the empty slide layout?
Could you please provide me a sample code how to add a slide with title to an existing presentation?
Br, Antti