ITrkHold.Modify (method)

method Modify
Syntax: object.Modify
Description:
The Modify method allows the user to modify an existing named hold.


Example:

Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkHold As Object
Dim oTrkHolds As Object

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.Execute oTrkItems
Set oTrkItem = oTrkItems.Item(1)
Set oTrkHolds = oTrkItem.Holds
Set oTrkHold = oTrkHolds.Item(1)
oTrkHold.Region = "HOLD2"
oTrkHold.Modify