PrtGroup.SetExtHold (Method)

Syntax

PrtGroup.SetExtHold reason$

Description

Sets an External Hold for this tracking group. The setting will be updated to PRT after a call to Modify.

Parameter Description
reason$ String. The reasons for placing the group on hold.

Example

Dim prt as new Prt
Reason$ = "-----"
' Get a list of groups from PRT
'    and initialize their External Hold status bits and Reasons.
prt.GetGroupList
for j = 0 to prt.GroupCount - 1
       prt.Group(j).SetExtHold Reason$ & " " & j
       prt.Group(j).Modify
next j