...
Scroll tablelayout | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Returns the number of items left in the list view user control
Scroll pagebreak |
---|
Examples
Code Block | ||
---|---|---|
| ||
// Deletes some items from a List View we created earlier. |
...
int $listViewID = `getGlobalIntVar "MyListViewID"`; |
...
...
// Deletes the 4th item (indices are zero-based) |
...
deleteListViewItem $listViewID 3; |
...
...
// Deletes all items whose first column value is "Mary" |
...
deleteListViewItem $listViewID "Mary"; |
Additional information
Related commands
...