ListBoxRow.ColumnTypeAt

From Xojo Documentation

Method

ListBoxRow.ColumnTypeAt(Column as Integer) As ListBox.CellTypes

New in 2019r3

Supported for all project types and targets.

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

Sample Code

In this example, row is a ListBoxRow:

Var theType As ListBox.CellTypes
theType = row.ColumnTypeAt(4)