property Name | |
Syntax: | String =
object.Name object.Name = String |
Description: | The Name property is the name of the named hold created by the CreateHold function. 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) msgbox oTrkHold.Name |