GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > GroupHeader クラス : DataField プロパティ |
グループ化するフィールドの名前を表す文字列値。
ActiveReportsは、指定したフィールドの値に対する変更をチェックし、変更があった場合は新しいグループを開始します。新しいグループを開始する前に現在のグループを終了します(グループフッタが印刷される)。指定したフィールドのデータは、データソースから取得するか、DataInitializeイベントでFieldコレクションに追加したアンバウンドフィールドを使用します。
private void rptSection_ReportStart(object sender, System.EventArgs eArgs) { this.groupHeader1.DataField = "Country"; }
Private Sub rptSection_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Me.GroupHeader1.DataField = "Country" End Sub