ListBox.CellTagAt

From Xojo Documentation

Property (As Variant )
aListBox.CellTagAt(Row as Integer, Column as Integer) = newVariantValue
or
VariantValue = aListBox.CellTagAt(Row as Integer, Column as Integer)

New in 2019r2

Supported for all project types and targets.

Gets or sets a "hidden" identifier associated with the cell identified by its parameters. Row and Column are zero-based.

Example

This example sets a tag for a cell.

Me.CellTagAt(1, 4) = "My Cell Tag"