Overview
Fill one element of your array.
(number) Address of your array (returned number from Memory.CreateArray).
(number) Index of element that you want filled with value.
(variant) Value that you want filled in index of array.
(number) Set Type of your array that you created (this arg is optional).
Nothing.
array = Memory.CreateArray(ARRAY_INT, 2) Memory.SetArrayData(array, 0, 50) Memory.SetArrayData(array, 1, 23) Memory.SetArrayData(array, 2, 51) Memory.FreeStructure(array)
See also: Related Actions