PDFListBox.AddRow

From Xojo Documentation

Method

PDFListBox.AddRow(item As String)

New in 2021r3

Supported for all project types and targets.

Appends Item in a new row to the end of the list.

Example

The following example in the Opening event of the control adds two rows to the listbox.

ListBox1.AddRow("Banana")
ListBox1.AddRow("Orange")