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


コンボボックスリストを表示するためにドロップダウンオプションを取得または設定します。
構文
'Declaration
 
Public Property DropDownOptions As DropDownOptions
'使用法
 
Dim instance As ComboBoxCellType
Dim value As DropDownOptions
 
instance.DropDownOptions = value
 
value = instance.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 メンバ

 

 


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