longRet = ListBox.AddString(strItem as String);
longRet = ListBox.DeleteString(intItem as Long);
longRet = ListBox.InsertString(longIndex as Long, strItem as String);
longRet = ListBox.AddString(strItem as String)
longRet = ListBox.DeleteString(intItem as Long)
longRet = ListBox.InsertString(longIndex as Long, strItem as String)
longRet = ListBox.AddString(strItem as String)
longRet = ListBox.DeleteString(intItem as Long)
longRet = ListBox.InsertString(longIndex as Long, strItem as String)
|
Element
|
Description
|
|---|---|
|
longRet
|
Returns the index at which the string was added.
|
|
strItem
|
A string to be added to the list box.
|
|
intItem
|
An integer indicating the index of the item to remove.
|
longRet = ListBox.FindString(longStartAfter as Long, strItem as String);
longRet = ListBox.FindStringExact(longStartAfter as Long, strItem as String);
longRet = ListBox.FindString(longStartAfter as Long, strItem as String)
longRet = ListBox.FindStringExact(longStartAfter as Long, strItem as String)
longRet = ListBox.FindString(longStartAfter as Long, strItem as String)
longRet = ListBox.FindStringExact(longStartAfter as Long, strItem as String)
|
Element
|
Description
|
|---|---|
|
longRet
|
Returns the index at which the string was found or -1 if not found.
|
|
strItem
|
The string to search for.
|
|
longStartAfter
|
An integer indicating the index at which to begin search. If set to -1, the entire list box is searched.
|
var longIndex = ListBox.CurSel();
var strRet = ListBox.GetText(longIndex);
longIndex = ListBox.CurSel
strRet = ListBox.GetText(longIndex)
longIndex = ListBox.CurSel
strRet = ListBox.GetText(longIndex)
|
Element
|
Description
|
|---|---|
|
strRet
|
The string at the specified index.
|
|
longIndex
|
The integer index at which to find the text.
|
ListBox.ResetContent {};
ListBox.ResetContent()
ListBox.ResetContent()
If (myFlag)
{
ListBox.ResetContent();
}
If myFlag
ListBox.ResetContent();
End If
If (myFlag)
ListBox.ResetContent()