Item method: Bindings collection

Syntax

Item(number)

Description

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

Parameters

Parameter Description

number

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

Returns

A reference to a Bindings object or NULL.

Example

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