The 'ComboBoxGetItemText' function gets the content of item which is designated at ComboBox.
string @ComboBoxGetItemText(string class_name, int index);
Parameters
string class_name : Class Name of ComboBox.
string index : Index of item that you want to get.
Return Value
It returns the text of designated item as string.
Example
str = @ComboBoxGetItemText("ComboBox1", 10);
Description : It returns the text of index no.10 at ComboBox of which class name is 'ComboBox1'.
Relate items)