PowerTools InputMan for Windows Forms 8.0J
CountWrappedLine プロパティ
使用例 

入力可能な行数を設定するときに、自動的に折り返した改行を含めるかどうかを示す値を取得または設定します。
構文
Public Property CountWrappedLine As Boolean
public bool CountWrappedLine {get; set;}

プロパティ値

説明
True 行数をカウントする際に自動的に折り返した改行を含めます。
False 行数をカウントする際に自動的に折り返した改行を含めません。
既定値はFalseです。
解説

CountWrappedLine プロパティは、MaxLineCount プロパティの設定に自動的に折り返した改行を含めるかどうかを指定します。

CountWrappedLine プロパティは、Multiline プロパティがTrueに設定され、かつWrapMode プロパティがCharWrapあるいはWordWrapに設定されている場合に有効となります。

使用例
行数を制限した複数行の GcTextBox コントロールを作成するコード例を次に示します。この例では他に CountWrappedLine、 MaxLineCount プロパティを使用して、行数制限のある複数行のGcTextBox コントロールを作成しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void InitializeLineLimitedMultilineGcTextBox()
{
    // Create an instance of a GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();

    // Set the Multiline property to true.
    gcTextBox1.Multiline = true;
    // Set the CountWrappedLine property to true.
    gcTextBox1.CountWrappedLine = true;
    // Set the MaxLineCount property to 3.
    // There're only 3 lines text can be displayed in the GcTextBox control.
    gcTextBox1.MaxLineCount = 3;
}
'  Please use the following namespace
'  Imports System.Windows.Forms
'  Imports GrapeCity.Win.Editors

Public Sub InitializeLimitedMultilineTextBox()
    ' Create an instance of a GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()

    '  Set the Multiline property to true.
    gcTextBox1.Multiline = True
    '  Set the CountWrappedLine property to true.
    gcTextBox1.CountWrappedLine = True
    '  Set the MaxLineCount property to 3.
    '  There're only 3 lines text can be displayed in the GcTextBox control.
    gcTextBox1.MaxLineCount = 3
End Sub
参照

GcTextBox クラス
GcTextBox メンバ
Multiline プロパティ
MaxLineCount プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.