MobileTableCellData.Tag

From Xojo Documentation

Property (As Variant )
aMobileTableCellData.Tag = newVariantValue
or
VariantValue = aMobileTableCellData.Tag

Supported on Mobile.

A value of any type associated with the cell.

Sample Code

Add a cell tag:

Var cell As MobileTableCellData = Table1.CreateCell
cell.Text = "Acme Widget"
cell.Tag = "123" // part ID
Table1.AddRow(0, cell)