method Delete | |
Syntax: | object.Delete |
Description: | The Delete method removes the attribute from the item. Example: Dim oTrkAttribAgent As Object Dim oTrkAttributes As Object Dim oTrkAttribute As Object Set oTrkAttribAgent =
CreateObject("Tracker.TrkAttributeAgent") oTrkAttribAgent.Execute oTrkAttributes Set oTrkAttribute = oTrkAttributes.Item(1) oTrkAttribute.Delete ... |