Bindings Collection Methods

This section discusses the Bindings collection methods in alphabetical order.

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

Field or Control

Definition

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;