PrtItem.EntryTime (Property Read)

Syntax

PrtItem.EntryTime

Description

Date property contains the date and time at which the item entered the current region.

Example

Dim Region as new prt.Region
Region.Id = "Detainment"
'Get a list of items in a region and display their entry times
'    one by one in a message box.
Region.GetItemList
For j = 0 to Region.ItemCount - 1
       msgbox Region.Item(j).EntryTime
Next j