Item method: PortalRegistry collection
Syntax
Item(number)
Description
The Item method returns the PortalRegistry object with the position in the PortalRegistry collection specified by number.
Parameters
| Parameter | Description |
|---|---|
|
number |
Specify the position number in the collection of the PortalRegistry object that you want returned. |
Returns
A PortalRegistry object if successful, NULL otherwise.
Example
For &I = 1 to &MyCollection.Count
&MyRegistry = &MyCollection.Item(&I);
/* Do processing */
End-For;