wxComboBox

wxComboBox
A combobox is like a combination of an edit control and a listbox.

It can be displayed as static list with editable or read-only text field; or a drop-down list with text field; or a drop-down list without a text field.

Creation Parameters
Functions/Procedures
Supertopics
Subtopics

wxComboBox

[proc]
clear_combo
( atom combo )

Category: wxComboBox

Clears the data inside of a wxComboBox specified by combo.


wxComboBox

[func]
combobox_count
( atom combo )

Category: wxComboBox

Used to count the number of items in a wxChoice.


wxComboBox

[proc]
delete_combo_item
( atom combo, integer item )

Category: wxComboBox

This goes to a ComboBox specified by combo and deletes the number in the box corresponding to item. It starts at the top with 0 being the first on the drop-down list.


wxComboBox

[func]
find_combo_string
( atom combo, sequence string )

Category: wxComboBox

Returns the item number of the item in the ComboBox with the specified string. The top item is 0 instead of 1, so be sure to take that into account.


wxComboBox

[func]
get_combo_item_string
( atom combo, integer item )

Category: wxComboBox

Returns the string for item.


wxComboBox

[func]
get_combo_string
( atom combo )

Category: wxComboBox

Returns the string in the edit box of the combo box.


wxComboBox

[proc]
set_combo_value
( atom combo, sequence text )

Category: wxComboBox

This sets the text of the box in a wxComboBox to text.