Select Method (SLComboBox)

Class

SLComboBox class

Action

Selects an item in the combo box.

Syntax

comboBox.Select(item)
Variable Description
item The item to select. LISTITEM.

Examples

In order to select the item with the text "item 1" from a combo box type:
comboBox.Select("item 1")
In order to select the third item from a combo box type:
comboBox.Select(3)