ITrkRegion.DeleteItem (method)

method DeleteItem
Syntax: object.DeleteItem bItem, bRef
Parameters:
bItem As String -

Item ID - Item ID of the item to be deleted
bRef As String -

Reference ID - Reference ID of the item to be deleted.
Description:
The DeleteItem method will delete the given item from the region.

Example:

Dim oRegionAgent As Object
Set oRegionAgent = CreateObject("Tracker.TrkRegionAgent")
Dim oRegions As Object
Dim oRegion As Object
oRegionAgent.ProjectID = "PA1"
Set oRegions = oRegionAgent.Execute
Set oRegion = oRegions.Item(1)
oRegion.DeleteItem "A1", ""
...
...