The 'ListBoxGetText' function stores the specified data of ListBox object in the specified buffer.
void @ListBoxGetText(string class_name, int index, string buf);
Parameters
string class_name : class name of ListBox object
int index : index of ListBox object
string buf : buffer in where you want to store the data
Return Value
none
Example
@ListBoxGetText("ListBox1", 0, $ST_0000);
Description : Assume that the data corresponding to index '0' in 'ListBox1' is '10'. If you execute the above statement, '10' is stored in the string-tag named 'ST_0000'.
Reference