When using a combobox, sometimes a user might not want the entries to give contiguous values, for example I might want my entries to be “0 1 2 3” for one combobox, but “1 2 4 8” for another.
Having a values() entry that coincides with items could solve this… for example an entry could be:
combobox bounds(10, 10, 100, 40), channel(“box”), value(1), items(“One”, “Two”, “Four”), values(1,2,4)