Version

Stop(Boolean) Method

Stops the animation
Syntax
'Declaration
 
Public Overloads Sub Stop( _
   ByVal resetAnimation As Boolean _
) 
public void Stop( 
   bool resetAnimation
)

Parameters

resetAnimation
Indicates if the animation should be reset to its initial position after stopping the animation.
Example
The following code demonstrates how to stop the animation and move the marker back to its initial position.

Private Sub btnStopAnimationActivityIndicator_Click(ByVal sender As Object, ByVal e As EventArgs) 
    ' Stop the animation and reset the marker back to its initial position 
    Me.ultraActivityIndicator1.Stop(True) 
End Sub
private void btnStopAnimationActivityIndicator_Click(object sender, EventArgs e)
{
    // Stop the animation and reset the marker back to its initial position.
    this.ultraActivityIndicator1.Stop(true);
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also