Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths20%, 11%, 13%, 56%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Returns the number of items left in the list view user control

Scroll pagebreak

Examples

Code Block
languagetext
// 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

...