GrapeCity ActiveReports for .NET 14.0J
DataSource プロパティ (SectionReport)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionReport クラス : DataSource プロパティ
レポートがデータを取得するデータソースを取得または設定します。
シンタックス
'宣言
 
Public Property DataSource As Object
public object DataSource {get; set;}

プロパティ値

データソースとして機能するオブジェクト。

解説

設定できるデータソースには、任意のActiveReports組み込みデータソースおよび以下の任意のデータソースがあります。

レポート処理の開始後にデータソースプロパティを変更することはできません。

使用例
private void rptProducts_ReportStart(object sender, System.EventArgs eArgs)
{
    rptProducts rpt = new rptProducts();
    localhost.DataSetWS ws = new localhost.DataSetWS();
    DataSet ds = ws.GetProduct(); 
    this.DataSource = ds;
    this.DataMember = "Products";
}
Private Sub rptProducts_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Dim rpt As New rptProducts()
    Dim ws As New localhost.DataSetWS()
    Dim ds As New DataSet()
    ds = ws.GetProduct()
    Me.DataSource = ds
    Me.DataMember = "Products"
End Sub
参照

SectionReport クラス
SectionReport メンバ
DataMember プロパティ