SlideShowType

SlideShowType class

Base slide show settings. Ancestors represent types of the slide show: PresentedBySpeaker Presented by a speaker (full screen) BrowsedByIndividual Browsed by individual (window) BrowsedAtKiosk Browsed at a kiosk (full screen)

public abstract class SlideShowType

Examples

[C#]
using (Presentation pres = new Presentation())
{
    pres.SlideShowSettings.SlideShowType = new PresentedBySpeaker();
    pres.Save("PresentedBySpeaker.pptx", SaveFormat.Pptx);

    pres.SlideShowSettings.SlideShowType = new BrowsedByIndividual();
    pres.Save("BrowsedByIndividual.pptx", SaveFormat.Pptx);

    pres.SlideShowSettings.SlideShowType = new BrowsedAtKiosk();
    pres.Save("BrowsedAtKiosk.pptx", SaveFormat.Pptx);
}

See Also