ListBoxInsertString

 

The ListBoxInsertString function is a function that inserts data into the ListBox in Windows Control.

 

@ListBoxInsertString(string class_name, int index, string text);

 

ÇÔ¼öÀÎÀÚ

string class_name : class name of ListBox object

int index : Index to insert

string text : string to insert

 

Example

@ListBoxInsertString("ListBox1", 1, "Factory 1");

Description : Insert the text ¡®Factory 1¡¯ at second location (index 1) into ListBox called 'ListBox1' of classname

 

Reference

Listbox Object

 

Related Helps

@ListBoxAddString()

@ListBoxDeleteString()

@ListBoxFillDir()

@ListBoxFillFile()

@ListBoxGetCurSel()

@ListBoxGetItemCount()

@ListBoxGetItemText()

@ListBoxGetSel()

@ListBoxGetSelCount()

@ListBoxGetText()

@ListBoxInsertString()

@ListBoxResetContent()

@ListBoxSetCurSel()