WebListBox.CellTag

From Xojo Documentation

Property (As Variant )
aWebListBox.CellTag(Row As Integer, Column As Integer) = newVariantValue
or
VariantValue = aWebListBox.CellTag(Row As Integer, Column As Integer)

New in 2010r4

Supported for all project types and targets.

Gets or sets a hidden value associated with the cell identified by Row and Column (zero-based).

Example

Assigning a tag to the first cell:

Me.CellTag(0, 0) = "Row 1, Column 1"

Reading the tag in the CellClick event:

MessageBox(Me.CellTag(row, column))