ITrkItem.GetBatchAttribute (method)

method GetBatchAttribute
Syntax: VARIANT*pVal = object.GetBatchAttribute ( bName )
Parameters:
bName As String -

Attribute Name
Description:
The GetBatchAttribute method returns an item's attributes that have not been commited using CommitChanges..

Example:

Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkItem As Object
Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.Execute oTrkItems
Set oTrkItem = oTrkItems.Item(1)
value = oTrkItem.GetBatchAttribute ("EXT1")
oTrkItem.CommitChanges