Class of combo box.
UIComboBox([<values>],[<defaultItem>]) --> UIComboBox object
cb1 := UIComboBox({"cat","dog"},"dog") cb2 := UIComboBox() cb2:setList({"apple", "banana"}) cb2:setValue(1)
Andrey Cherepanov <<skull@eas.lrn.ru>>
No dependies of platform.
Get selected string from combo box.
getValue() --> <sValue>
No arguments
Selected string from combo box. Returned value is string.
Fill list of values.
setList(<values>)
Returns NIL.
Select element by default from list.
setValue(<value>)
Returns NIL.