I can open a Powperpoint file in directly in slideshow mode with this :
System.Diagnostics.Process pptProcess = new System.Diagnostics.Process();
pptProcess.StartInfo.FileName = Environment.CurrentDirectory + @"\MyPres.pptx";
pptProcess.StartInfo.UseShellExecute = true;
pptProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized;
pptProcess.StartInfo.Verb = "show"; // to open the slideshow
pptProcess.Start();
Now Powerpoint allows us to see our notes and slideshow in same time, it's the presenter mode. So, I want to open a presentation directly in this mode. I've tried differents "verbs" (StartInfo.Verb), differents arguments (StartInfo.Arguments) but I didn't have a solution.
Do you have a solution for me ?
Thanks for your help.