バージョン

Stop(Boolean) メソッド

アニメーションを停止します
シンタックス
'宣言
 
Public Overloads Sub Stop( _
   ByVal resetAnimation As Boolean _
) 
public void Stop( 
   bool resetAnimation
)

パラメータ

resetAnimation
アニメーションを停止した後に、アニメーションをその初期位置にリセットするかどうかを示します。
使用例
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);
}
参照