WebListBox.RowCount

From Xojo Documentation

Read-Only Property (As Integer )
IntegerValue = aWebListBox.RowCount

Supported for all project types and targets.

Returns the number of rows in the WebListBox, not including the header row.

Example

This example loops through all the rows in the Listbox and clears the second column:

For row As Integer = 0 To WebListBox1.RowCount - 1
WebListBox.CellValueAt(row, 1) = ""
Next