MESCIUS SPREAD for Windows Forms 15.0J
DropDownWhenStartEditing プロパティ
使用例 

[Enter]キーを押したときにコンボボックスリストを表示するかどうかを取得または設定します。
構文
'宣言
 
Public Property DropDownWhenStartEditing As Boolean
public bool DropDownWhenStartEditing {get; set;}
解説
このプロパティは、Editableプロパティがfalseに設定されている場合にのみ効果があります。
使用例
次のサンプルコードは、DropDownWhenStartEditingプロパティを設定します。
FarPoint.Win.Spread.CellType.ComboBoxCellType cb = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cb.Items = new string[] { "Item 1", "Item 2" };
cb.DropDownOptions = FarPoint.Win.DropDownOptions.Button;
cb.Editable = false;
cb.DropDownWhenStartEditing = true;
cb.DoubleClickTextToDropDown = true;
cb.StopEditingAfterDropDownItemSelected = true; 
fpSpread1.ActiveSheet.Cells[1, 1].CellType = cb;
Dim cb As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
cb.Items = New String() {"Item 1", "Item 2"}
cb.DropDownOptions = FarPoint.Win.DropDownOptions.Button
cb.Editable = False
cb.DropDownWhenStartEditing = True
cb.DoubleClickTextToDropDown = True
cb.StopEditingAfterDropDownItemSelected = True
FpSpread1.ActiveSheet.Cells(1, 1).CellType = cb
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.