FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ComboBoxCellType クラス : DropDownWhenStartEditing プロパティ |
'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;}
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