PresentedBySpeaker

PresentedBySpeaker class

Presented by a speaker (full screen)

public class PresentedBySpeaker : SlideShowType

Constructors

NameDescription
PresentedBySpeaker()Initializes a new instance of the PresentedBySpeaker class.

Examples

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

See Also