WebBrowserProgressChangedEventArgs.MaximumProgress プロパティ

定義

読み込み中のドキュメントの総バイト数を取得します。

public:
 property long MaximumProgress { long get(); };
public long MaximumProgress { get; }
member this.MaximumProgress : int64
Public ReadOnly Property MaximumProgress As Long

プロパティ値

読み込む予定の総バイト数。

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの WebBrowser.ProgressChanged 発生を報告します。 このレポートは、イベントが発生したタイミングを確認するのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 という名前WebBrowser1の型WebBrowserのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーがイベントに関連付けられていることを確認します WebBrowser.ProgressChanged

private void WebBrowser1_ProgressChanged(Object sender, WebBrowserProgressChangedEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "CurrentProgress", e.CurrentProgress );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "MaximumProgress", e.MaximumProgress );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "ProgressChanged Event" );
}
Private Sub WebBrowser1_ProgressChanged(sender as Object, e as WebBrowserProgressChangedEventArgs) _ 
     Handles WebBrowser1.ProgressChanged

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "CurrentProgress", e.CurrentProgress)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "MaximumProgress", e.MaximumProgress)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"ProgressChanged Event")

End Sub

注釈

このプロパティを使用すると、コントロールに現在のナビゲーションの進行状況を ProgressBar 表示できます。 プロパティを CurrentProgress 使用して、正常にダウンロードされたバイト数を確認します。

適用対象

こちらもご覧ください