IncludeHiddenSlides

PresentationAnimationsGenerator.IncludeHiddenSlides property

Get or sets if hidden slides should be included.

public bool IncludeHiddenSlides { get; set; }

Examples

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

See Also