Item method: QueryList class

Syntax

Item(number)

Description

The Item method returns the QueryListValue object that exists at the number position in the QueryList instance.

Parameters

Parameter Description

Number

Specify the position number in the QueryList object that you want returned.

Returns

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

Example

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