-
Notifications
You must be signed in to change notification settings - Fork 0
Variable_local_array2_set
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Sets the value of the local 2-dimensional array with the given name.
| 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 |
void: This function does not return anything.
// 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
This is number 1