variable_local_array2_set(name,ind1,ind2,value)

From ENIGMA
Jump to navigation Jump to search

Description

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

Parameters

Parameter Data Type Description
name string local variable name of the array
ind1 integer first index of the array
ind2 integer second 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_array2_set("myarray", 0, 0, "Hello, JDI!");