Monitors - Item Property
Reference to the collection item
Member of Monitors (PRIM_APPL.IMonitors)
Data Type - PRIM_APPL.IMonitor - Windows monitor
Parameters
Name | Type | Data Type | Description |
|---|---|---|---|
Index | *Input | Integer | Item number in the collection |
Details
Reference to an item in the collection accesible via the value supplied in the Index parameter.
Example
Accessing the third item in the collection via the Item property
#Reference <= #Collection.Item<3>
However, as Item is the default property of the collection, there is no need to specify it on the command.
#Reference <= #Collection<3>