iOSTableCellData.AccessoryType

From Xojo Documentation

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

Supported on Mobile (iOS).

The accessory type that is displayed in the cell.

Sample Code

Create a new cell with a checkmark accessory:

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