-------
================ ===============================================
EVT_COMBOBOX Sent when an item on the list is selected.
+ Note that calling `GetValue` in this handler
+ will return the newly selected value.
EVT_TEXT Sent when the combobox text changes.
================ ===============================================
");
"Selects the text between the two positions in the combobox text field.", "",
SetMark);
+#ifdef __WXMSW__
+ DocDeclAStrName(
+ virtual void , GetSelection(long* OUTPUT, long* OUTPUT),
+ "GetMark(self) -> (from, to)",
+ "Gets the positions of the begining and ending of the selection mark in
+the combobox text field.", "",
+ GetMark);
+#endif
+
DocDeclStr(
bool , SetStringSelection(const wxString& string),
"Select the item with the specifed string", "");