Assume I have
combo(["A","B","C","D"])
How can I select item B. Is there a property like selectIndex(2) or selectItem("B") ?
I could not find such property.
Looks like the first entry is hard-wired to be selected by default: https://github.com/cwi-swat/rascal/blob/master/src/org/rascalmpl/library/vis/figure/interaction/swtwidgets/Combo.java#L40
So the only way to select the item you want is to create the combo with the first item the one you want selected.