iOSTable.RemoveRow

From Xojo Documentation

Method

iOSTable.RemoveRow(section As Integer, row As Integer)

Supported on Mobile(iOS).

Removes the row from the section.

Parameters

Parameter Description
section The section containing the row to remove.
row The row to remove.

Exceptions

Exception Description
OutOfBoundsException When the section does not exist.

Sample Code

Removes row 4 from section 0:

Table1.RemoveRow(0, 4)