GrapeCity ActiveReports for .NET 14.0J
DataMember プロパティ
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionReport クラス : DataMember プロパティ
レポートを連結する DataSource 内の指定したリストを取得または設定します。
シンタックス
'宣言
 
Public Property DataMember As String
public string DataMember {get; set;}
解説

デフォルトは空の文字列です。あるデータソース(データセットなど)に複数のデータソースが含まれている場合、DataMemberをデータソースに含まれる1つのリストに設定する必要があります。ActiveReportsの組み込みデータソースに含まれるデータソースは常に1つなので、組み込みデータソースを使用する場合は、このプロパティを設定する必要はありません。

使用例
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 メンバ
DataSource プロパティ