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

テキストセルの最大入力可能文字数を取得または設定します。
構文
'宣言
 
Public Property MaxLength As Integer
public int MaxLength {get; set;}

プロパティ値

文字数を表す Integer
解説

これは表示可能な文字数ではなく、入力可能な文字数です。セルのTextプロパティを設定してテキストを入力する場合、このプロパティはその文字数を制限しません。このプロパティによって制限されるのは、ユーザーが編集モード時に入力できる文字数だけです。

使用例
次のサンプルコードは、セルの最大文字数を設定します。
FarPoint.Win.Spread.CellType.TextCellType txt = new FarPoint.Win.Spread.CellType.TextCellType();
txt.MaxLength = 25;
fpSpread1.Sheets[0].Cells[0, 0].CellType = txt;
fpSpread1.Sheets[0].Cells[0, 0].Text = "This is a text cell.";
fpSpread1.Sheets[0].Columns[0].Width = 200;
Dim txt As New FarPoint.Win.Spread.CellType.TextCellType()
txt.MaxLength = 25
FpSpread1.Sheets(0).Cells(0, 0).CellType = txt
FpSpread1.Sheets(0).Cells(0, 0).Text = "This is a text cell."
FpSpread1.Sheets(0).Columns(0).Width = 200
参照

TextCellType クラス
TextCellType メンバ

 

 


© MESCIUS inc. All rights reserved.