Select Method (JComboBox)
Class
JComboBox
.
Action
Selects the specified item.
Syntax
C#
comboBox
.
Select
(
item
)
VB
comboBox
.
Select
(
item
)
Variable
Description
item
The name or index of the item to select.
ItemIdentifier
.
Examples
VB
colorsComboBox.Select
("red")
colorsComboBox.Select
(1)