PresentedBySpeaker

PresentedBySpeaker constructor

Initializes a new instance of the PresentedBySpeaker class.

public PresentedBySpeaker()

Examples

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

See Also