iOSTable.RemoveSection

From Xojo Documentation

Method

iOSTable.RemoveSection(section As Integer)

Supported on Mobile(iOS).

Removes the section from the table (and all its rows).

Parameters

Parameter Description
section The section you wish to remove.

Exceptions

Exception Description
OutOfBoundsException When the section does not exist.

Sample Code

Remove section 0 and all the rows it contains:

Table1.RemoveSection(0)