PrtAttribute.Id (Property Read/Write)

Syntax

PrtAttribute.Id

Description

String property contains the attribute name of an Item ID .

Example

Dim prt as new Prt
' Get a list of items from PRT and display the first item's
'   attribute names and values one by one in a message box.
prt.GetItemList
for j = 0 to prt.Item(0).AttrCount - 1
  MsgBox prt.Item(0).Attr(j).Id &"="& prt.Item(0).Attr(j).Value
next j