Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
Syntax
List.RemoveRange(
list as list,
index as number,
optional count as nullable number
) as list
About
Removes count values in the list starting at the specified position, index.
Example
Remove 3 values in the list {1, 2, 3, 4, -6, -2, -1, 5} starting at index 4.
Usage
List.RemoveRange({1, 2, 3, 4, -6, -2, -1, 5}, 4, 3)
Output
{1, 2, 3, 4, 5}