MobileTableCellData.DetailText

From Xojo Documentation

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

Supported on Mobile.

The the smaller text that appears below the primary, character-based value of the cell.

Sample Code

Set the detail text:

Var cell As MobileTableCellData = Table1.CreateCell
cell.Text = "Acme Widget"
cell.DetailText = "Price: $3.00"
Table1.AddRow(0, cell)