There is a new view type introduced in powerpoint 2010 called as 'Reading View'. I am trying to apply it to a presentation but the PpViewType Enumeration of office interop does not contain any member that will modify the presentation view as 'Reading view'. could anybody help me whether it has defined somewhere else or how I can change to Reading view programmatically?

PowerPoint.Application oPPT = new PowerPoint.Application();

//Add New Presentation
PowerPoint.Presentations oPresSet = oPPT.Presentations;
PowerPoint.Presentation oPres = oPresSet.Add(Office.MsoTriState.msoTrue);

//Add Slides to the Presentation
PowerPoint.Slides oSlides = oPres.Slides;
PowerPoint.Slide oSlide = oSlides.Add(1, PowerPoint.PpSlideLayout.ppLayoutTitleOnly);
oSlide.Shapes[1].TextFrame.TextRange.Text ="sample text";

//Changing View Type
oPres.Application.ActiveWindow.ViewType = PowerPoint.PpViewType.ppViewNotesPage;
link|improve this question

73% accept rate
C# or VBA ? can you show the code where you set the Viewtype so far? Are you sure if C#, you are referencing the correct version of the COM Office libraries / PIA, the 2010 I mean... – Davide Piras Jan 30 at 8:46
anything is fine. I am referencing office 14 version only. see here link The code is simple.Edited the main post for the code – satya Jan 30 at 9:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.