Extracting Note sections from PPTX files

Hi there


I’m trying to extract the notes pages from PPTX files but can’t seem to find the content I’m looking for.

We process PPTX files using the following code:

for (int i = 0; i < oDoc.Slides.Count; i++)
{
TextFrameEx[] tf = (TextFrameEx[])Aspose.Slides.Util.PresentationScanner.GetAllTextBoxes(oDoc.Slides[i]);

for (int j = 0; j < tf.Length; j++)
{
TextFrameEx currentFrame = tf[j];
for (int k = 0; k < currentFrame.Paragraphs.Count; k++)
{
ParseParagraphEx(currentFrame.Paragraphs[k], oDoc);
}

}
}


ParseParagraphEx is a function we use to extract formatting information and the text from each textbox.

Is this the correct way to retrieve note content from PPTX files?

Thanks
Eric

Dear Eric,

Please proceed to this thread link to see how to extract the notes from PPTX slides. Please share with us, if you feel any issue.

Thanks and Regards,