X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/da8d6ffa5790529ae784345cb4441a3956751193..f8c88923b051ea51cb08369055f195ecb7e44e35:/wxPython/src/_combobox.i?ds=sidebyside diff --git a/wxPython/src/_combobox.i b/wxPython/src/_combobox.i index 961a9554df..ac81948f49 100644 --- a/wxPython/src/_combobox.i +++ b/wxPython/src/_combobox.i @@ -138,10 +138,21 @@ public: DocDeclStr( void , SetSelection(int n), - "Selects the text between the two positions, in the combobox text field."); + "Sets the item at index 'n' to be the selected item."); - %name(SetMark) virtual void SetSelection(long from, long to); + DocDeclStrName( + virtual void , SetSelection(long from, long to), + "Selects the text between the two positions in the combobox text field." + SetMark); + DocDeclStr( + bool , SetStringSelection(const wxString& string), + "Select the item with the specifed string"); + + DocDeclStr( + void , SetString(int n, const wxString& string), + "Set the label for the n'th item (zero based) in the list."); + DocDeclStr( virtual void , SetEditable(bool editable), "");