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;