Item method: QueryDBRecordField collection

Syntax

Item(number)

Description

The Item method returns the QueryDBRecordField object that exists at the number position in the QueryDBRecordField collection.

Parameters

Parameter Description

Number

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

Returns

A reference to a QueryDBRecordField object if successful, NULL otherwise.

Example

For &I = 1 to &Coll.Count; 
   &MyQueryDBRecordField = &Coll.Item(&I); 
   /* do processing */ 
End-For;