WebListBox.RowCount

From Xojo Documentation

Property (As Integer )
aWebListBox.RowCount = newIntegerValue
or
IntegerValue = aWebListBox.RowCount

Supported for all project types and targets.

Gets or sets 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.Cell(row, 1) = ""
Next