Jump to content

API Panel.Position.StopAnimate: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import of updated API docs
JonnyW (talk | contribs)
XML import of API documentation
Line 1: Line 1:




<sidebar>API contents</sidebar>
<sidebar>API Contents</sidebar>
Stops all animations started by this component
Stops all animations started by this component



Revision as of 14:27, 9 August 2013


<sidebar>API Contents</sidebar> Stops all animations started by this component

Class hierarchy

Panel

Position
StopAnimate

Parameters

This function has no parameters


Return value

This call does not return a value


Detailed description

This call stops all animations invoked by the caller of the routine through Animate. The animations are stopped by jumping each animation to the end of its sequence.


A component can not stop another components animations, and this can not be used to exit leaving an animation partially complete. For this level of control the Morph call should be used in a timer.


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.Position.StopAnimate()

No additional examples