GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > ControlCollection クラス : Add メソッド |
Addメソッドは、コントロールをコレクションの末尾に追加します。
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs) { GrapeCity.ActiveReports.SectionReportModel.TextBox t = new GrapeCity.ActiveReports.SectionReportModel.TextBox(); t.Text="ここにテキストを入力します。"; this.Sections[0].Controls.Add (t); }
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart Dim t As New GrapeCity.ActiveReports.SectionReportModel.TextBox t.Text = "ここにテキストを入力します。" Me.Sections(0).Controls.Add(t) End Sub