property Comment | |
Syntax: | String =
object.Comment object.Comment = String |
Description: | The Comment property specifies the text that will be logged when the item is inserted. Example: Dim oTrkItem As Object Dim vTrkItem As Variant Set oTrkItem = CreateObject("Tracker.TrkNewItem") oTrkItem.RefId = "T123" oTrkItem.RegionID = "A_TP1" oTrkItem.ItemTypeId = "ITEMTYPE1" oTrkItem.Comment = "Inserting item into region
A_TP1" oTrkItem.RegionLoc = -1 oTrkItem.InsertItem vTrkItem |