iOSTable.RowCount

From Xojo Documentation

Method

iOSTable.RowCount(section As Integer) As Integer

Supported on Mobile(iOS).

The count of rows in a section.

Parameters

Parameters Description
section The section for which you want the count of rows.

Sample Code

Get the counts of rows in section 0:

Var rowCount As Integer
rowCount = Table1.RowCount(0)