PrtAttribute.Value (Property Read)

Syntax

PrtAttribute.Value

Description

String property contains the attribute value 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