DefaultDelay
Propriété PresentationAnimationsGenerator.DefaultDelay
Obtient ou définit le temps de retard par défaut [ms].
public int DefaultDelay { get; set; }
Exemples
[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);
}
}
Voir aussi
- classe PresentationAnimationsGenerator
- espace de noms Aspose.Slides.Export
- assembly Aspose.Slides