Hello,
I build a presentation from several ppt files and a pot Template file. To do this, I use this code :
Presentation outputPres = new Presentation("myTemplate.pot");
Then I do a loop to add each wanted slide from each presentation
sourcePres.CloneSlide(sourcePres.GetSlideByPosition(slideId), outputPres.Slides.LastSlidePosition + 1, outputPres, temp);
Then I save this new Presentation to a PPT File.Until now all is OK.
But now I want to edit the "title text" of my "title slide" (the first slide)...Have I to edit the Master Template ? Slide ? Can you explain me how to do this ? (Find the title text and edit it)
Thanks a lot !