property ItemCount | |
Syntax: | long*pVal = object.ItemCount |
Description: | The ItemCount property will return the number of items in the region. Example: Dim oRegionAgent As Object Set oRegionAgent =
CreateObject("Tracker.TrkRegionAgent") Dim oRegions As Object Dim oRegion As Object oRegionAgent.ProjectID = "PA1" Set oRegions = oRegionAgent.Execute Set oRegion = oRegions.Item(1) x = oRegion.ItemCount ... ... |