GrapeCity ActiveReports for .NET 12.0J
Value プロパティ (Parameter)
使用例 

パラメータプレースホルダの置換で使用するパラメータの値を取得または設定します。
構文
'宣言
 
Public Property Value As String
public string Value {get; set;}

プロパティ値

レポートのデータソースSQLクエリーでパラメータプレースホルダテキストを置換するために使用する文字列値。

使用例
private void button1_Click(object sender, System.EventArgs e)
{
    ActiveReport1 rpt = new ActiveReport1();
    rpt.Parameters["country"].Value = "Germany";
    rpt.Run();
    arv.Document = rpt.Document;
}
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim rpt As New ActiveReport1
    rpt.Parameters("country").Value = "Germany"
    rpt.Run()
    arv.Document = rpt.Document
End Sub
参照

関連項目

Parameter クラス
Parameter メンバ

 

 


Copyright © 2003 GrapeCity inc. All rights reserved.