기타
How to get powerpoint slidenotes by c#
leo21c
2011. 4. 7. 23:47
How to get powerpoint slidenotes by c#
PowerPoint.Presentation presentation = Globals.ThisAddIn.Application.ActivePresentation;PowerPoint.Slide slide = (PowerPoint.Slide)app.ActiveWindow.View.Slide;slide.NotesPage.Shapes.Placeholders[2].TextFrame.TextRange.InsertAfter("This is a Test");string slidenotes = slide.NotesPage.Shapes.Placeholders[2].TextFrame.TextRange.Text;
LIST