How do I include the speaker notes in a presentation when exporting as a PPT (or PDF)? I am using VB.NET and Aspose Slides 14.6.
Hi Scott,
Thank you for the details.
Please see the following sample code to add notes in your slide.
Presentation pres = new Presentation();
ISlide slide = pres.Slides[0];
INotesSlide note = slide.AddNotesSlide();
IAutoShape ashp = (IAutoShape)note.Shapes[1];
ashp.TextFrame.Text = “Notes text”;
pres.Save(“D:\Data\NotesSlide.pptx”, Aspose.Slides.Export.SaveFormat.Pptx);
Please feel free to contact support in case you need any further assistance.
Thanks & Regards,
Thank you