Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.58 KB

list-get-integer-t-method.md

File metadata and controls

54 lines (40 loc) · 1.58 KB
title description ms.author ms.date ms.topic author ms.reviewer
List.Get(Integer, var T) Method
Gets the element at the specified index.
solsen
08/26/2024
reference
SusanneWindfeldPedersen
solsen

List.Get(Integer, var T) Method

Version: Available or changed with runtime version 1.0.

Gets the element at the specified index.

Syntax

[Ok := ]  List.Get(Index: Integer, var Result: T)

Parameters

List
 Type: List
An instance of the List data type.

Index
 Type: Integer
The one-based index of the element to get.

Result
 Type: T
The element at the specified index.

Return Value

[Optional] Ok
 Type: Boolean
true if an element exists at the given index, otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.

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.

Related information

List Data Type
Get Started with AL
Developing Extensions