MESCIUS SPREAD for Windows Forms 15.0J
MaxLengthUnit プロパティ (GcTextBoxCellType)
使用例 

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

プロパティ値

The valueMaxLength がバイトに基づく場合は true。文字に基づく場合は false。

既定値は LengthUnit.Char です。
解説
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 メンバ

 

 


© MESCIUS inc. All rights reserved.