FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ComboBoxCellType クラス : MaxDrop プロパティ |
'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;}
このプロパティは、ドロップダウンリストに表示する項目数を指定します。リストの項目数がこのプロパティの設定より少ない場合、リストにはそれらの項目のみが表示されます。たとえば、リストに3つの項目が含まれていて、このプロパティの設定がデフォルト値の8の場合、ドロップダウンリストには3つの項目のみが表示されます。
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