作成日: 2026/06/24 最終更新日: 2026/06/24
文書種別
使用方法
詳細
コンボボックス型セル(ComboBoxCellType)で、ユーザーによるテキストの編集が開始されると、既定では、開いているドロップダウンリストが自動的に閉じますが、これを開いたままにするには、StaysOpenOnEditプロパティをTrueに設定します。
◎サンプルコード(VB)
◎サンプルコード(VB)
Dim c As New ComboBoxCellType() c.IsEditable = True c.StaysOpenOnEdit = True GcSpreadGrid1.Columns(0).CellType = c◎サンプルコード(C#)
ComboBoxCellType c = new ComboBoxCellType(); c.IsEditable = true; c.StaysOpenOnEdit = true; GcSpreadGrid1.Columns[0].CellType = c;