Skip to content

Variable_local_array2_set

hugh greene edited this page Jun 20, 2022 · 1 revision

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!");

NOTOC

Clone this wiki locally