Item method: ClassInfo collection

Syntax

Item(number)

Description

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

Parameters

Parameter Description

number

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

Returns

A reference to a ClassInfo object or NULL.

Example

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