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

テキストボックスコントロールで複数の行を表示するかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property MultiLine As Boolean
public bool MultiLine {get; set;}

プロパティ値

ブール値。テキストボックスコントロールで複数行表示する場合は True、そうでない場合は False

解説

テキストボックスを複数行表示にすると、テキストが複数の行に渡って表示されます。WordWrapプロパティがTrueに設定されていれば、長い行は次の行に折り返されます。WordWrapプロパティがFalseに設定されている場合、テキストに改行文字が含まれている場合のみ次の行に表示されます。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.TextBox1.CanGrow = true;
    this.TextBox1.CanShrink = false;
    this.TextBox1.MultiLine = true;
    this.TextBox1.WordWrap = true;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.TextBox1.CanGrow = True
   Me.TextBox1.CanShrink = False
   Me.TextBox1.MultiLine = True
   Me.TextBox1.WordWrap = True
End Sub
参照

関連項目

TextBox クラス
TextBox メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.