Property HoldExpiration | |
Syntax: | DATE = object.HoldExpiration object.HoldExpiration = DATE |
Description: | The HoldExpiration property specifies which items to return with an expiration date less than the time/date given. 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.HoldExpiration = "Jan 27, 2004" MsgBox oTrkItemAgent.HoldExpiration oTrkItemAgent.Execute oTrkItems |