Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure CopyFromArray(const Src: TCplxArray; Index: Integer; Len: Integer); | Copies array content. |
| 2 | procedure CopyFromArray(const Src: TDoubleArray; Index: Integer; Len: Integer); | Copies array content. |
Overload 1: procedure CopyFromArray(const Src: TCplxArray; Index: Integer; Len: Integer);
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplxArray | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object)
Remarks:
Copies Len elements from the Src array and stores them in the calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.
Overload 2: procedure CopyFromArray(const Src: TDoubleArray; Index: Integer; Len: Integer);
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TDoubleArray | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object)
Remarks:
Copies Len elements from the Src array and stores them in the calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.