GtkComboBox::insert_text

void insert_text(int position, string text);

position : A model index where the text should be inserted.

text : A string.

The insert_text() method inserts the string specified by text in the combo box GtkListStore at the index specified by position. Note that you can only use this method with combo boxes constructed with the new_text function.

See also: append_text() , prepend_text() , remove_text()