TotalRowCount Property
- Last UpdatedNov 07, 2016
- 1 minute read
Returns the total number of records for the current query. This property is read-only.
Type
Integer
Syntax
Object.TotalRowCount
Remarks
The row count is the number of rows returned in the current query, which usually would be same as MaxRecords property except for the case when number of records retrieved are less than the MaxRecords property. For example, if there are 950 records for a specific criterion and the MaxRecords property is 100, then in the last page there would be 50 records and the row count would be 50. In the same example, the TotalRowCount property would always be 950.
Example
The name of the control is AlmDbView1 and tagname is an integer tag.
tagname = #AlmDbView1.TotalRowCount;