PowerTools ActiveReports for .NET 9.0J
Parameter クラス
メンバ  使用例 

Parameterは、レポートのデータソースSQLクエリーテキストのパラメータプレースホルダの値を置換するために使用します。
オブジェクト モデル
Parameter クラス
構文
'宣言
 
Public Class Parameter 
public class Parameter 
使用例
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
{
    this.Parameters[0].DefaultValue = "Germany";
    this.Parameters[0].Key = "country";
    this.Parameters[0].Prompt = "Country: ";
    this.Parameters[0].Tag = "some extra data";
    this.Parameters[0].Type = GrapeCity.ActiveReports.SectionReportModel.Parameter.DataType.String;
}
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Me.Parameters(0).DefaultValue = "Germany"
    Me.Parameters(0).Key = "country"
    Me.Parameters(0).Prompt = "Country: "
    Me.Parameters(0).Tag = "Some extra data"
    Me.Parameters(0).Type = GrapeCity.ActiveReports.SectionReportModel.Parameter.DataType.String
End Sub
継承階層

System.Object
   GrapeCity.ActiveReports.SectionReportModel.Parameter

参照

関連項目

Parameter メンバ
GrapeCity.ActiveReports.SectionReportModel 名前空間
ParameterCollection クラス
Parameters プロパティ

 

 


©2003-2015 GrapeCity inc. All rights reserved.