Item method: QueryField collection
Syntax
Item(number)
Description
The Item method returns the QueryField object that exists at the number position in the QueryField collection.
Parameters
| Parameter | Description |
|---|---|
|
Number |
Specify the position number in the collection of the QueryField object that you want returned. |
Returns
A reference to a QueryField object if successful, NULL otherwise.
Example
For &I = 1 to &QueryFieldColl.Count;
&MyQueryField = &QueryFieldColl.Item(&I);
/* do processing */
End-For;