PowerTools SPREAD for Windows Forms 8.0J
MaxLength プロパティ (GcTextBoxCellType)


テキストコントロールに入力できる最大文字数を取得または設定します。
構文
'Declaration
 
Public Property MaxLength As Integer
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As Integer
 
instance.MaxLength = value
 
value = instance.MaxLength
public int MaxLength {get; set;}

プロパティ値

コントロールに入力できる文字数またはバイト数(文字数とバイト数のどちらであるかはLengthAsByteプロパティによって決定されます)。
デフォルト値はゼロです。
例外
例外説明
System.ArgumentOutOfRangeException値がゼロ未満の場合は、ArgumentOutOfRangeException がスローされます。
解説
MaxLength プロパティを使用して、ユーザーがコントロールに入力できる文字数を制限できます。既定値は0で、文字数が制限されないことを示します。0より大きい任意の数を指定すると、それが最大文字数になります。表示結果には、この MaxLength プロパティと共に GcTextBox.MaxLengthUnit も影響します。
次のサンプルコードは、MaxLength プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell1.MaxLengthUnit = GrapeCity.Win.Spread.InputMan.CellType.LengthUnit.Char;
inputcell1.MaxLength = 10;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType
inputcell1.MaxLengthUnit = GrapeCity.Win.Spread.InputMan.CellType.LengthUnit.Char
inputcell1.MaxLength = 10
FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.