Clone

Description

Clone duplicates an array.

Syntax

trg.array.Clone()

This function does not have any parameters

Return value

This function creates a clone array which you must set to a variable.

Sample

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

Function Start

Dim arr


trg.array.Add( 51 ) 

trg.array.Add( 36 )

set arr = trg.array.Clone()

trg.Message( arr.Get(1) )


End Function

See also

Platform Objects and Methods

target.array.Chop

target.array.Empty

target.array