Full screen slideshow under automation

V

Virgil

Context is C# or VB.NET Powerpoint control and enforcing a true fullscreen
mode.

The "fullscreen" kios mode gives a black band and the top & bottom as well
as the task bar. However, when Powerpoint is directly used then the full
screen is a true full screen.
I was interested on how to invoke a true full screen

Thanks

code snippet

pptPresentation.SlideShowSettings.ShowType =
Microsoft.Office.Interop.PowerPoint.PpSlideShowType.ppShowTypeKiosk;
pptPresentation.SlideShowSettings.AdvanceMode =
Microsoft.Office.Interop.PowerPoint.PpSlideShowAdvanceMode.ppSlideShowManualAdvance;
pptPresentation.SlideShowSettings.ShowWithAnimation =
MsoTriState.msoTrue;
pptPresentation.SlideShowSettings.StartingSlide = 1;
pptPresentation.SlideShowSettings.EndingSlide =
pptPresentation.Slides.Count;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top