Item method: QueryExpression collection

Syntax

Item(number)

Description

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

Parameters

Parameter Description

Number

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

Returns

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

Example

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