Get( ) method (List Collections)
- Last Updated: March 15, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
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
|
- 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 .