ListBoxRow.ColumnValueAt

From Xojo Documentation

Method

ListBoxRow.ColumnValueAt(Column as Integer) As String

New in 2019r3

Supported for all project types and targets.

Gets the Value of the column (whose index is passed) from a ListBoxRow.

Sample Code

In this example, row is a ListBoxRow:

If row.ColumnValueAt(4) = "Taxable" Then
MessageBox("This transaction is taxable.")
End If