DefaultDelay

Propiedad PresentationAnimationsGenerator.DefaultDelay

Obtiene o establece el tiempo de retardo predeterminado [ms].

public int DefaultDelay { get; set; }

Ejemplos

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

Ver También