private void arReport_ReportStart(object sender, System.EventArgs eArgs)
{
//コントロールの配列を作成する
ARControl[] arr = new ARControl[3];
GrapeCity.ActiveReports.SectionReportModel.CheckBox c = new GrapeCity.ActiveReports.SectionReportModel.CheckBox();
GrapeCity.ActiveReports.SectionReportModel.Label l = new GrapeCity.ActiveReports.SectionReportModel.Label();
GrapeCity.ActiveReports.SectionReportModel.TextBox t = new GrapeCity.ActiveReports.SectionReportModel.TextBox();
//コントロールのプロパティを設定する。
c.Text = "Checkbox";
l.Left = 1;
l.Value = "LabelValue";
t.Left = 2;
t.Text = "TextBox";
//コントロールを配列に割り当てる。
arr[0] = c;
arr[1] = l;
arr[2] = t;
//レポートの最初のセクションにコントロールのレンジを追加する。
this.Sections[0].Controls.AddRange(arr);
//チェックボックスを削除する。
this.Sections[0].Controls.RemoveAt(1);
}