property Description | |
Syntax: | String = object.Description |
Description: | Example: Dim oTrkItemType As Object Dim oTrkItemTypes As Object Set oTrkItemTypes =
CreateObject("Tracker.TrkItemTypes") For i = 1 To oTrkItemTypes.count Set oTrkItemType = oTrkItemTypes.item(i) trace "Description " &
oTrkItemType.Description Next i ... |