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


リスト部分に一度に表示する項目数を取得または設定します。
構文
'Declaration
 
Public Property MaxDrop As Integer
'使用法
 
Dim instance As ComboBoxCellType
Dim value As Integer
 
instance.MaxDrop = value
 
value = instance.MaxDrop
public int MaxDrop {get; set;}

プロパティ値

表示するリストの項目数を表す Integer
解説

このプロパティは、ドロップダウンリストに表示する項目数を指定します。リストの項目数がこのプロパティの設定より少ない場合、リストにはそれらの項目のみが表示されます。たとえば、リストに3つの項目が含まれていて、このプロパティの設定がデフォルト値の8の場合、ドロップダウンリストには3つの項目のみが表示されます。

次のサンプルコードは、1月から6月までを含むコンボボックスを最初のシートのセルに設定し、表示部分のサイズを指定します。
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cmbocell.Items = (new String[] {"January", "February", "March", "April", "May", "June"});
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows;
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter;
cmbocell.Editable = true;
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left;
cmbocell.ListOffset = 20;
cmbocell.ListWidth = 0;
cmbocell.MaxDrop = 4;
fpSpread1.Sheets[1].Cells[2,2].CellType = cmbocell;
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
cmbocell.Items = (new String() {"January", "February", "March", "April", "May", "June"})
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter
cmbocell.Editable = True
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left
cmbocell.ListOffset = 20
cmbocell.ListWidth = 0
cmbocell.MaxDrop = 4
fpSpread1.Sheets(1).Cells(2,2).CellType = cmbocell
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

開発者ガイド

コンボボックス型セル

 

 


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