How to set the Presentations or slide(PPT) pagsize in PowerPoint using C# interop library?
I want to set the Presentations pagsize is "ppSlideSizeOnScreen16x9"
// Create new Slide
PowerPoint.Application pptApp = new PowerPoint.Application();
MyPres = pptApp.Presentations.Add(MsoTriState.msoFalse);
MyPres.Final = false;
MyPres.PageSetup.SlideSize = PowerPoint.PpSlideSizeType.ppSlideSizeOnScreen16x9;
Code more ...
This result is not what I expected ; Now, how to set the Presentations or slide(PPT) pagsize?