Control - IsAnimating Property
IsAnimating indicates that a control is currently being animated
Member of Control (PRIM_CTRL)
Data Type - Boolean
Details
The IsAnimating property will return True if the control is being animated by one of its animations e.g. Fade or MoveTo.
This is typically used to prevent an animation from being restarted by a Timer
Example
Testing the IsAnimating property
Evtroutine Handling(#AnimationTimer.Tick)
If (*Not #Control.IsAnimating)
#Control.FadeOut
#Control.FadeIn
Endif
Endroutine