PrtRegion.TotalItems (Property Read)

Syntax

PrtRegion.TotalItems

Description

Integer property to get the total number of items in the region.

Example

Dim Region as new PrtRegion
Region.Id = "PRODUCTION"
'Get a region's data and display the total number of items it
'   contains in a message box.
Region.GetData
msgbox "Region "& Region.id &" contains "& Region.TotalItems &" items."