WebRadioGroup.Count

From Xojo Documentation

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

New in 2021r1

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.Count - 1
WebListBox.CellValueAt(row, 1) = ""
Next