PowerTools SPREAD for Windows Forms 8.0J
DropDownWhenStartEditing プロパティ


[Enter]キーを押したときにコンボボックスリストを表示するかどうかを取得または設定します。
構文
'Declaration
 
Public Property DropDownWhenStartEditing As Boolean
'使用法
 
Dim instance As ComboBoxCellType
Dim value As Boolean
 
instance.DropDownWhenStartEditing = value
 
value = instance.DropDownWhenStartEditing
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 メンバ

 

 


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