The 'ComboBoxGetText' function ruturns the current data of ComboBox object.
string @ComboBoxGetText(string class_name);
Parameters
string class_name : Class name of ComboBox object
Return Value
Current data
Example
str = @ComboBoxGetText("ComboBox1");
Description : Assume that the currently selected data of 'ComboBox1' is '10'. If you execute the above statement, '10' is stored in the string-variable named 'str'.
Relate items)