|
|
|
|
|
- Copying arrays of different dimensions
- Miscellaneous
Copies the content of a WLanguage array or associative array to another one. MyArray is array of 2 strings
MyArray[1] = "WINDEV"
MyArray[2] = "WEBDEV"
MyArrayCopy is array of 2 strings
ArrayCopy(MyArray, MyCopiedArray)
arrA1 is array of int = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
arrA2 is array of int
ArrayCopy(arrA1, arrA2, 1, 3)
arrA3 is array of int
ArrayCopy(arrA1, arrA3, 4, 4)
arrA4 is array of int
ArrayCopy(arrA1, arrA4, 6)
Sintaxis
ArrayCopy(<Source array> , <Destination array> [, <Start position of copy> [, <Copy size>]])
<Source array>: Array Name of the Array variable to copy. <Destination array>: Array Name of the Array variable into which the copy must be performed. <Start position of copy>: Optional integer Index in the source array where the copy must start. This index must be between 1 and the last index of the array. This parameter is set to 1 by default. Otherwise, a WLanguage error occurs at runtime. This parameter cannot be used with an associative array.
<Copy size>: Optional integer Copy size. Warning: The range of values indicated by <Position de début de copie> and <Taille de copie> must be entirely included in the source array. Otherwise, a WLanguage error occurs at runtime. By default, elements are copied from the specified index to the end of the array. This parameter cannot be used with an associative array.
Observaciones Copying arrays of different dimensions - Simple array: A WLanguage error is generated at runtime.
- Dynamic array: The destination array is completely re-allocated (and therefore emptied) with the copy.
Miscellaneous - A WLanguage error occurs if the type of the elements found in the destination array differs from the type of the elements found the source array.
- If the destination array contains elements, these elements are deleted.
- This function can be used with associative arrays. In this case, it is only possible to copy the entire array. It is not possible to copy part of the associative array.
- This function cannot be used with the fixed arrays.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|