DefaultDelay
PresentationAnimationsGenerator.DefaultDelay-Eigenschaft
Ruht die Standardverzögerungszeit [ms] ab oder legt sie fest.
public int DefaultDelay { get; set; }
Beispiele
[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);
}
}
Siehe auch
- Klasse PresentationAnimationsGenerator
- Namespace Aspose.Slides.Export
- Assembly Aspose.Slides