I'm using the code below to start a presentation in C#:
var app = new Microsoft.Office.Interop.PowerPoint.Application();
var pres = app.Presentations;
Presentation objPres = pres.Open(@"C:\test.pptx", MsoTriState.msoTrue, MsoTriState.msoTrue);
objPres.SlideShowSettings.Run();
How can I start the presentation from a custom start index? Let's say the 4th slide.
How can I start the presentation with a custom window size (standard is fullscreen)? Please check the image below - with these settings the presentation is started in a window. How can I set these values through the interops?