본문 바로가기
기타

How to get powerpoint slidenotes by c#

by leo21c 2011. 4. 7.
SMALL

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

'기타' 카테고리의 다른 글

C#에서 DLL 내보내기 직접 호출  (0) 2011.08.11
www.add-in-express.com  (0) 2011.04.11
How to: Get All the Text in a Slide in a Presentation  (0) 2011.04.06
SlideClass.NotesPage Property  (0) 2011.04.06
Creating PowerPoint 2007 Add-Ins  (0) 2011.04.06