FrameIndex
PresentationPlayer.FrameIndex property
Gets the frame index.
public int FrameIndex { get; }
Examples
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
using (var animationsGenerator = new PresentationAnimationsGenerator(pres))
using (var player = new PresentationPlayer(animationsGenerator, 33))
{
player.FrameTick += (sender, args) =>
{
args.GetFrame().Save($"frame_{sender.FrameIndex}.png");
};
animationsGenerator.Run(pres.Slides);
}
}
See Also
- class PresentationPlayer
- namespace Aspose.Slides.Export
- assembly Aspose.Slides