Item method: Namespace collection

Syntax

Item(number)

Description

The Item method returns a Namespaces object that exists at the number position in the Namespaces collection executing the method.

Parameters

Parameter Description

number

Specify the position number in the collection of the Namespaces object that you want returned.

Returns

A reference to a Namespaces object or NULL.

Example

For &N = 0 to &NAMESPACES.Count - 1
   &NAMESPACE = &NAMESPACES.Item(&N);
   /* do processing */
End-For;