DefaultDelay
PresentationAnimationsGenerator.DefaultDelay 属性
获取或设置默认延迟时间 [ms]。
public int DefaultDelay { get; set; }
示例
[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);
}
}
另请参阅
- class PresentationAnimationsGenerator
- namespace Aspose.Slides.Export
- assembly Aspose.Slides