GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > TextBox クラス : Text プロパティ |
コントロールに表示するテキストを表す文字列値。
Valueプロパティを使用してコントロールの内容を変更すると、そのValueはOutputFormatを使用してTextプロパティに変換されます。
private void detail_Format(object sender, System.EventArgs eArgs) { this.TextBox1.Text = "TextBox"; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.TextBox1.Text = "TextBox" End Sub