GrapeCity ActiveReports for .NET 12.0J
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 メンバ

 

 


Copyright © 2003 GrapeCity inc. All rights reserved.