Select Method (SLComboBox)

Class

SLComboBox.

Action

Selects an item in the combo box.

Syntax

C#
comboBox.Select(item)
VB
comboBox.Select(item)
Variable Description
item The item to select. ItemIdentifier.

Examples

VB

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(2)