Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to programmatically read and change slide notes in PowerPoint

Tags:

c#

powerpoint

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

like image 410
Alexander Stolz Avatar asked Jan 29 '10 20:01

Alexander Stolz


People also ask

How do I change slide notes in PowerPoint?

Click the notes section of the window and begin typing. If the notes are hidden, click the Notes button found in options on the bottom right of the PowerPoint screen. Method Two: Edit your notes in Notes View. Click on the View tab in the ribbon and click Notes Page.

How can I read my notes while presenting PowerPoint?

View your notes while you present Here's how: On the View menu, click Presenter View. You'll see the main slide that you're presenting, a preview of the next slide, and any notes you've added for the current slide below the preview of the next slide.

Can you edit in notes page view PowerPoint?

You can also add notes and edit them here, and all changes made here show within the Notes pane of Normal view, and vice versa. Additionally, you can also format the text content here.


1 Answers

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"
like image 79
Crispy Avatar answered Sep 21 '22 06:09

Crispy