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


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

プロパティ値

文字数を表す Integer
解説

デフォルトでは、編集フィールドのテキストは255文字に制限され、左揃えになります。このプロパティを設定することで、最大文字数を変更できます。

次のサンプルコードは、ユーザーが編集モード時に入力できる文字数を制限します。
FarPoint.Win.Spread.CellType.ComboBoxCellType cb = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cb.Items = new string[] {"OneHundredThousand", "TwoHundredThousand", "ThreeHundredThousand"};
cb.ListWidth = 0;
cb.MaxLength = 10;
cb.Editable = true;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = cb;
fpSpread1.ActiveSheet.Columns[0].Width = 120;
Dim cb As New FarPoint.Win.Spread.CellType.ComboBoxCellType
cb.Items = New String() {"OneHundredThousand", "TwoHundredThousand", "ThreeHundredThousand"}
cb.ListWidth = 0
cb.MaxLength = 10
cb.Editable = True
FpSpread1.ActiveSheet.Cells(0, 0).CellType = cb
FpSpread1.ActiveSheet.Columns(0).Width = 120
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

開発者ガイド

コンボボックス型セル

 

 


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