This document is archived and information here might be outdated.  Recommended version.


How to play an animation (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > Developing with ArcGIS > Learning ArcObjects > Interacting with the map display > Working with animations > Working with animations in map > How to play an animation

How to play an animation


Playing an animation

To play an animation, the functions on the AGAnimationUtils object can be used with the IAGAnimationPlayer interface. Also, by using the AGAnimationUtils object, you can stop, pause, and record animations. Animation playing honors the animation environment settings.
The following code example shows how to play animations:
[C#]
private void Play_Animation()
{
    //Get the animation extension. 
    IAnimationExtension animExt;
    animExt=GetAnimationExtension();

    //Play the animation using the IAGAnimationPlayer interface. 
    IAGAnimationPlayer animPlayer;
    animPlayer=new AGAnimationUtils();
    animPlayer.PlayAnimation(animExt.AnimationTracks, animExt.AnimationEnvironment,
        null);
}
[VB.NET]
Private Sub Play_Animation()
    'Get the animation extension.
    Dim animExt As IAnimationExtension
    animExt=GetAnimationExtension()
    'Play the animation using the IAGAnimationPlayer interface.
    Dim animPlayer As IAGAnimationPlayer
    animPlayer=New AGAnimationUtils
    animPlayer.PlayAnimation(animExt.AnimationTracks, animExt.AnimationEnvironment, Nothing)
End Sub


See Also:

How to set the animation environment




Development licensing Deployment licensing
ArcGIS Desktop Basic ArcGIS Desktop Basic
ArcGIS Desktop Standard ArcGIS Desktop Standard
ArcGIS Desktop Advanced ArcGIS Desktop Advanced