Link Search Menu Expand Document

SSpread.ComboDropDown Event

Occurs when the drop-down list of combo box cells is opened.

The following child objects are attached to the Event object.

Type Name Description
Number Col Combo box cell column number
Number Row Row number of combo box type cell

The drop-down list opens when you click the arrow button to the right of the combo box cell or when you press the bottom of the Alt + Direction key.

Example of usage

Function OnComboDropDown(e) {
    print(e.Col, e.Row, "\n");
}

Related Item
CellType property
ComboCloseUp, ComboSelChange event