PowerTools SPREAD for Windows Forms 8.0J
MaxLengthUnit プロパティ


コントロールに保持できる最大文字数をバイト、文字、テキスト要素のいずれに基づいて取り扱うかを取得または設定します。
構文
'Declaration
 
Public Property MaxLengthUnit As LengthUnit
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As LengthUnit
 
instance.MaxLengthUnit = value
 
value = instance.MaxLengthUnit
public LengthUnit MaxLengthUnit {get; set;}

プロパティ値

MaxLengthがバイトに基づく場合はtrue。文字に基づく場合はfalse。
デフォルト値はLengthUnit.Charです。
解説
GcTextBox.MaxLength プロパティをカウントする際の単位を決定します。値が LengthUnit.Byte の場合、MaxLength はバイト単位でカウントされます。値が LengthUnit.Char の場合、MaxLength は文字単位でカウントされます。値が LengthUnit.TextElement の場合、MaxLength はテキスト要素単位でカウントされます。
次のサンプルコードは、MaxLengthUnit プロパティを使用します。
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.