WebListBox.AddRowAt
From Xojo Documentation
Method
AddRowAt(index As Integer, items() As String)
New in 2020r1
Supported for all project types and targets.
New in 2020r1
Supported for all project types and targets.
Creates a new row at the index passed, filling the columns with the items passed.
Sample Code
This example inserts a row at index 4 into a WebListbox and populates columns 0 and 1:
Listbox1.AddRowAt(4, "Trixie", "10")
See Also
AddRow and RemoveRowAt methods.