[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Copies a range of elements in one Array to another Array and performs type casting and boxing as required. [Property] SourceIndex=Sets the integer that represents the index in the Source at which copying begins. ARG(int)|1|0 DestinationIndex=Sets the integer that represents the index in the Destination at which storing begins. ARG(int)|1|0 Length=Sets the number of elements to copy. ARG(int)|1|0 [Methods] doCopy=Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. ARG(Array Source, Array Destination, int Length)|1|0 *doCopy2=Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. ARG(Array Source, int SourceIndex, Array Destination, int DestinationIndex, int Length)|1|0 Source=Defines the Array that contains the data to copy. ARG(Array)|4|13 Destination=Defines the Array that receives the data. ARG(Array)|4|13 Length=Defines a integer that represents the number of elements to copy. ARG(int)|4|1 *SourceIndex=Defines the integer that represents the index in the Source at which copying begins. ARG(int)|4|1 *DestinationIndex=Defines the integer that represents the index in the Destination at which storing begins. ARG(int)|4|1