variable_local_array_set(name,ind,value)

From ENIGMA
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Sets the value of the local 1-dimensional array with the given name.

Parameters

Parameter Data Type Description
name string local variable name of the array
ind integer index of the array
value variant the value to set in the array

Return Values

void: This function does not return anything.

Example Call

// demonstrates setting a value in a local array by looking it up by string name
variable_local_array_set("myarray", 0, 3.14);