Get the contents of the item at the index specified in the ListBox.
string @ListBoxGetItemText(string class_name, int index);
Parameters
string class_name : Class Name of ListBox Object
string index : Index of the item to import
Return value
Returns the text of the specified item as a string.
Example
str = @ListBoxGetItemText("ListBox1", 10);
Description : Get the text of index 10 from ListBox called 'ListBox1' of classname
Related Helps