PrtGroup.ExtHoldReason (Property Read)

Syntax

PrtGroup.ExtHoldReason

Description

String property contains the reason for setting External Hold for this Tracking Group.

Example

Dim prt as new Prt
' Get a list of groups from PRT and display their External Hold
'    status bit Reasons one by one in a message box.
prt.GetGroupList
for j = 0 to prt.GroupCount - 1
      MsgBox prt.Group(j).ExtHoldReason
next j