iOSTableCellData.Tag

From Xojo Documentation

Property (As Auto )
aiOSTableCellData.Tag = newAutoValue
or
AutoValue = aiOSTableCellData.Tag

Supported on Mobile (iOS).

A tag value for the cell.

Sample Code

Add a cell tag:

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