PrtItem.ClearStatusBit (Property Read/Write)

Syntax

PrtItem.ClearStatusBit Bit%

Description

Clears the specified bit (0 through 31) of the status mask.)

Parameter Description
Bit Integer. The bit position 0 - 31 to clear.

Example

Dim prt as new Prt
n% = 17
' Get a list of items from PRT and initialize a particular
'    status bit for each one.
prt.GetItemList
for j = 0 to prt.ItemCount - 1
       prt.Item(j).ClearStatusBit n%
       prt.Item(j).Modify
next j