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

コンボボックスリストを表示するためにドロップダウンオプションを取得または設定します。
構文
'宣言
 
Public Property DropDownOptions As DropDownOptions
public DropDownOptions DropDownOptions {get; set;}
解説
このプロパティは、編集モードが最初にOFFからONになった場合のみ適用されます。このプロパティを使用してドロップダウンリストを表示するタイミングを指定できます。
使用例
次のサンプルコードは、ボタンクまたは、テキスト領域をクリックする時にドロップダウンリストを表示させます。
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cmbocell.Items = (new String[] { "January", "February", "March", "April", "May", "June" });
cmbocell.DropDownOptions = FarPoint.Win.DropDownOptions.ButtonAndText;
fpSpread1.Sheets[0].Cells[0, 0].CellType = cmbocell;
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
cmbocell.Items = (new String() {"January", "February", "March", "April", "May", "June"})
cmbocell.DropDownOptions = FarPoint.Win.DropDownOptions.ButtonAndText
FpSpread1.Sheets(0).Cells(0,0).CellType = cmbocell
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.