Remove

Description

Calling target.array.Remove will remove a value at a specified index.

Syntax

trg.array.Remove(index)

index (input) - the index of the value that you want to remove.

Return value

This function does not return a value.

Sample

'---------- Start ----------

Function Start

trg.array.Add(66)

trg.array.Add(77)

trg.array.Add(11)

trg.array.Remove(1)

End Function

See also

Platform Objects and Methods

target.array.Last

target.array.Set

target.array