MobileTableCellData.AccessoryType

From Xojo Documentation

Property (As AccessoryTypes )
aMobileTableCellData.AccessoryType = newAccessoryTypesValue
or
AccessoryTypesValue = aMobileTableCellData.AccessoryType

Supported on Mobile.

The accessory type that is displayed in the cell.

Sample Code

Create a new cell with a checkmark accessory:

Var cell As MobileTableCellData = Table1.CreateCell
cell.Text = "Sample"
cell.AccessoryType = MobileTableCellData.AccessoryTypes.Checkmark
Table1.AddRow(0, cell)