DesktopListBoxRow.CellTagAt

From Xojo Documentation

Method

DesktopListBoxRow.CellTagAt(Column as Integer) As Variant

New in 2021r3

Supported for all project types and targets.

Gets the CellTag for a cell (whose column index was passed) from a DesktopListBoxRow.

Sample Code

In this example, row is a DesktopListBoxRow:

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