Returns the element at the specified index in the list. An error is raised if the index is beyond the bounds of the list (index < 1 or index > size of list). The Unknown value (?) is returned if the element at the specified position has an invalid object reference or the value is Unknown (?).

Return type: T

Access: PUBLIC

Applies to: Progress.Collections.List<T> class

Syntax

Get(index AS INTEGER)
index
The one-based position in the list of the element to retrieve.

Example

For a code example showing Get(), see Progress.Collections.List<T> class .

See also

<T> Generic type reference