GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > ReportInfo クラス : CanGrow プロパティ |
動作を表すブール値。Falseの場合は、コントロールの定義済みの高さに合わせてテキストを切り詰めます。Trueの場合は、コントロールの高さを拡大し、合わせて下にあるすべてのコントロールをシフトします。
private void detail_Format(object sender, System.EventArgs e) { this.reportInfo1.BackColor = Color.Coral; this.reportInfo1.CanGrow = true; }
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.ReportInfo1.BackColor = Color.Coral Me.ReportInfo1.CanGrow = True End Sub