Hi,
I was trying to merge two presentation files to create a new one but CloneSlide() is not coming for presentation object.
Could you please help me in this regard. I am using Aspose.Slides version 17.5.0.0
here is the code.
Presentation pres1 = new Presentation(@“C:\1.pptx”);
Presentation pres2 = new Presentation(@“C:\2.pptx”);
Presentation targetpres = new Presentation();
SortedList sList = new SortedList();
foreach (Slide slide in pres1.Slides)
{
targetpres.CloneSlide
}