property isCleared | |
Syntax: | VARIANT_BOOL*pVal =
object.isCleared object.isCleared = VARIANT_BOOL*pVal |
Description: | The isCleared property will return TRUE if the Named hold is cleared (internal Hold has been turned off) . 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.isCleared |