DesktopListBoxRow.CellTextAt

From Xojo Documentation

Method

DesktopListBoxRow.CellTextAt(column as Integer) As String

New in 2021r3

Supported for all project types and targets.

Gets the text of the cell (whose column index is passed) from a DesktopListBoxRow.

Sample Code

In this example, row is a DesktopListBoxRow:

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