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

テキストコントロールに入力できる最大行数を取得または設定します。
構文
Public Property MaxLineCount As Integer
public int MaxLineCount {get; set;}

プロパティ値

最大行数を指定するInt32値。 既定値は0です。
解説

MaxLineCount プロパティを0に設定すると、入力できるテキストの行数に制限がなくなります。 ただし、使用可能なメモリ量による制限の範囲内に限られます。 また、MaxLineCount プロパティで設定した制限は、キーボードなどの操作だけでなく、 コードによる入力についても有効になります。

MaxLineCount プロパティはMultiline プロパティがTrue のときのみ有効です。 自動改行による行数を含めるかどうかはCountWrappedLine プロパティで設定します。

使用例
//  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 プロパティ
CountWrappedLine プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.