List.GetRange(Integer, Integer) Method
Version: Available or changed with runtime version 1.0.
Get a shallow copy of a range of elements in the source.
Syntax
Result := List.GetRange(Index: Integer, Count: Integer)
Parameters
List
Type: List
An instance of the List data type.
Index
Type: Integer
The one-based List index at which the range starts.
Count
Type: Integer
The number of elements in the range.
Return Value
Result
Type: List of [T]
A shallow copy of a range of elements in the source List.
Remarks
The type T
is a dynamic type. When List
is of type Text
then T
will change to Text
. When List
is of type Integer
, then T
will change to Integer
.
For examples on shallow copy versus deep copy, see List Data Type.