BrowsedByIndividual

BrowsedByIndividual class

Browsed by individual (window)

public class BrowsedByIndividual : SlideShowType

Constructors

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

Properties

NameDescription
ShowScrollbar { get; set; }Show Scroll Bar in Window

Examples

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

See Also