tags:

views:

226

answers:

1

How do you get the Notes text from the current PowerPoint slide using C#?

+4  A: 

I believe this might be what you are looking for:

string s = slide.NotesPage.Shapes[2].TextFrame.TextRange.Text
slide.NotesPage.Shapes[2].TextFrame.TextRange.Text = "Hello World"
Chris Persichetti