IncludeHiddenSlides

PresentationAnimationsGenerator.IncludeHiddenSlides Eigenschaft

Gibt an oder setzt, ob versteckte Folien einbezogen werden sollen.

public bool IncludeHiddenSlides { get; set; }

Beispiele

[C#]
using (Presentation presentation = new Presentation("animated.pptx"))
{
    using (var animationsGenerator = new PresentationAnimationsGenerator(presentation.SlideSize.Size.ToSize()))
    {
        animationsGenerator.IncludeHiddenSlides = false;
        // ...
        animationsGenerator.Run(presentation.Slides);
    }
}

Siehe auch