ListBoxRow.ColumnTagAt

From Xojo Documentation

Method

ListBoxRow.ColumnTagAt(Column as Integer) As Variant

New in 2019r3

Supported for all project types and targets.

Gets the ColumnTag for a column (whose index was passed) from a ListBoxRow.

Sample Code

In this example, row is a ListBoxRow:

Var taxable As Boolean
If row.ColumnTagAt(4) = "Taxable" Then taxable = True