GrapeCity.Win.Editors.v80 アセンブリ > GrapeCity.Win.Editors 名前空間 > GcTextBox クラス : MaxLineCount プロパティ |
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