PowerTools ActiveReports for .NET 9.0J
Text プロパティ (TextBox)
使用例 

コントロールに表示する書式付きテキストの値を取得または設定します。
構文
'宣言
 
Public Property Text As String
public string Text {get; set;}

プロパティ値

コントロールに表示するテキストを表す文字列値。

解説

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
参照

関連項目

TextBox クラス
TextBox メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.