GrapeCity ActiveReports for .NET 14.0J
InProgress プロパティ
使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : InProgress プロパティ
ドキュメントが現在ロード中であるかどうかを決定します。
シンタックス
'宣言
 
Public Property InProgress As Boolean
public bool InProgress {get; set;}

プロパティ値

ブール値。ドキュメントのロードが現在進行中であれば True、それ以外の場合は False

使用例
private void viewer1_Load(object sender, System.EventArgs e)
{
    if (arv.Document.InProgress)
    {
        this.progressBar1.Visible = true;
    }
    else
    {
        this.progressBar1.Visible = false;
    }
}
Private Sub viewer1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    If arv.Document.InProgress Then
        Me.ProgressBar1.Visible = True
    Else
        Me.ProgressBar1.Visible = False
    End If
End Sub
参照

SectionDocument クラス
SectionDocument メンバ