|
説明 |
コンボボックス型セルから1つのリスト項目を削除します。 CellTypeプロパティに$CellTypeComboBox(コンボボックス型)が設定されたセルのみ有効です。 すべてのリスト項目を削除したい場合は、TypeComboBoxClearメソッドを使用してください。 |
||||||
|
呼出形式 |
TypeComboBoxRemoveItem(col, row, index) |
||||||
|
戻り値 |
なし |
||||||
|
引数 |
|
||||||
|
例外 |
なし |
||||||
|
使用例 |
Col = 1; Row = 1;CellType = $CellTypeComboBox;TypeComboBoxList = "すべて削除\t項目1\t項目2\t項目3\t項目4\t項目5"; Function OnComboCloseUp(e) { if (e.SelChange == 0) { TypeComboBoxClear(e.Col, e.Row); } else if (e.SelChange > 0) { TypeComboBoxRemoveItem(e.Col, e.Row, e.SelChange); }}
|
||||||
|
関連項目 |
CellTypeプロパティ |