Jump to content

API Panel.Position.StopAnimate: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import
No edit summary
Line 1: Line 1:
<sidebar>API Contents</sidebar>
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
Stops all animations started by this component
|-
 
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
<div style="width:25%; float:right" class="toc">
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''StopAnimate'''
====Class hierarchy====
|-
[[API Panel|Panel]]
| colspan="2" | Stops all animations started by this component&nbsp;
:[[API Panel.Position|Position]]
|-
::[[API Panel.Position|StopAnimate]]
|-
</div>
| width="10%" align="center" style="border-top: 2px solid #000;" | [[File:Fc9-void-icon.png]] - NONE
__TOC__
| width="90%" style="border-top: 2px solid #000;" | ''Return''
 
|}
==Parameters==
''This function has no parameters''
 
 
==Return value==
''This call does not return a value''





Revision as of 11:41, 16 January 2023

StopAnimate
Stops all animations started by this component 
- NONE Return


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