MobileTableCellData.Text

From Xojo Documentation

Property (As String )
aMobileTableCellData.Text = newStringValue
or
StringValue = aMobileTableCellData.Text

Supported on Mobile.

The text of the cell. This is the main (large) text that appears for the row.

Sample Code

Set the text:

Var cell As MobileTableCellData = Table1.CreateCell
cell.Text = "Acme Widget"
Table1.AddRow(0, cell)