System.CopyArray
Delphi
procedure CopyArray(Dest, Source, TypeInfo: Pointer; Count: NativeInt);
C++
extern DELPHI_PACKAGE void __fastcall CopyArray(void * Dest, void * Source, void * TypeInfo, NativeInt Count);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.pas System.hpp |
System | System |
Description
Copies an array whose elements' type is specified by the TypeInfo
variable.
The parameters of CopyArray are:
Parameter | Description |
---|---|
Dest
|
Destination array. |
Source
|
Source array. |
TypeInfo
|
Type information of the source array elements. The
|
Count
|
Number of elements in the source array. |