GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > Parameter クラス : Value プロパティ |
レポートのデータソース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