iOSMobileTable.SelectedRow

From Xojo Documentation

Read-Only Property (As Pair )
PairValue = aiOSMobileTable.SelectedRow

Supported for all project types and targets.

Returns the selected section and row via a Pair.

Sample Code

Var selection As Pair = Table1.SelectedRow
Var section, row As Integer
section = selection.Left
row = selection.Right

See Also

SelectionChanged event, SelectRow method.