The InputCombo class has this constructor:
name,choices,default) |
choices is a list/tuple of possible values. default is the initial/default choice. If default is not in the choices list, it is prepended. If default is None, the first item of choices is taken as the default.
The choices are presented to the user as a combobox, which will initially be set to the default value.
InputCombo objects have the following methods:
) |
val) |