WebBrowser.Stop メソッド

定義

保留中のナビゲーションをキャンセルし、バックグラウンド サウンドやアニメーションなどの動的なページ要素をすべて停止します。

public:
 void Stop();
public void Stop ();
member this.Stop : unit -> unit
Public Sub Stop ()

次のコード例では、 メソッドをStop使用して、インターネット エクスプローラーと同様のコントロールの [停止] ボタンWebBrowserを実装する方法を示します。 この例では、フォームに というコントロールと というコントロールwebBrowser1ButtonButtonStop含まれているWebBrowser必要があります。

完全なコード例については、「方法: Windows フォーム アプリケーションに Web ブラウザー機能を追加する」を参照してください。

// Halts the current navigation and any sounds or animations on 
// the page.
void ButtonStop_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   this->WebBrowser1->Stop();
}
// Halts the current navigation and any sounds or animations on 
// the page.
private void stopButton_Click(object sender, EventArgs e)
{
    webBrowser1.Stop();
}
' Halts the current navigation and any sounds or animations on 
' the page.
Private Sub stopButton_Click( _
    ByVal sender As Object, ByVal e As EventArgs) _
    Handles stopButton.Click

    webBrowser1.Stop()

End Sub

注釈

メソッドをStop使用して、[インターネット エクスプローラー ファイル] メニューに似た [停止] ボタン実装できます。

適用対象

こちらもご覧ください