MobileTableCellData.Image

From Xojo Documentation

Property (As Picture )
aMobileTableCellData.Image = newPictureValue
or
PictureValue = aMobileTableCellData.Image

Supported on Mobile.

The image for the cell.

Sample Code

Set the cell image:

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