property HoldName | |
Syntax: | String =
object.HoldName object.HoldName = String |
Description: | The HoldName property specifies which items to return with the given named hold. This property can be set/get as the following example shows. Only items having this named hold will be returned. Example: Dim oTrkItemAgent As Object Dim oTrkItems As Object Dim oTrkItem As Object Set oTrkItemAgent =
CreateObject("Tracker.TrkItemAgent") oTrkItemAgent.Region = "A_TP1" oTrkItemAgent.HoldName = "SCRIPTHOLD1" MsgBox oTrkItemAgent.HoldName oTrkItemAgent.Execute oTrkItems |