BrowsedByIndividual

BrowsedByIndividual constructor

Initializes a new instance of the BrowsedByIndividual class.

public BrowsedByIndividual()

Examples

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

See Also