The 'ListBoxAddString' function adds the specified data to ListBox object.
void @ListBoxAddString(string class_name, string data);
Parameters
string class_name : class name of ListBox object
string data : data that you want to add
Return Value
none
Example
@ListBoxAddString("ListBox1","first");
Description : 'first' is added to 'ListBox1'
Reference