I am evaluating Aspose.PPT and have a need to build a single PPT file out of several, when I call cloneNode, the slides are copied to the new presentation, but the notes are not? I do not see a way to copy Notes as this is ReadOnly, does cloneNode attempt to copy the slide and its notes? or just the slide?
I would also like to be able to access the raw notes to determine the formatting (bold, italic, etc) is this possible?
Thanks
I am using this simple code below to copy all slides from p to newPres.
for (int x=0; x<p.Slides.Count; x++) {
p.CloneSlide(p.Slides[x],newPres.Slides.Count,newPres);
}