ListBox.RowTag

From Xojo Documentation

Method

ListBox.RowTag(row as Integer) As Variant

New in 2009r2

Supported for all project types and targets.

Gets and sets the RowTag for the row (zero-based).

Examples

To set the tag:

ListBox1.RowTag(row) = "MyTag"

To get the tag:

myTag = ListBox1.RowTag(row)