property Description | |
Syntax: | String =
object.Description object.Description = String |
Description: | The Description property shows the description given by the user when the CreateHold function was called. 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.Description |