ITrkItemAgent.Project (property)

property Project
Syntax: String = object.Project
object.Project = String
Description:
The Project property specifies which projects to search for items. This property can be set/get as the following example shows.
Multiple projects can be specified by providing a comma separated list.

Example:
Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkItem As Object

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.project = "P1,P2,P3"
MsgBox oTrkItemAgent.project
oTrkItemAgent.Execute oTrkItems