-
Notifications
You must be signed in to change notification settings - Fork 0
Variable_global_array_set
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Sets the value of the global 1-dimensional array with the given name.
| Parameter | Data Type | Description |
|---|---|---|
| name | string | global variable name of the array |
| ind | integer | 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 global array by looking it up by string name
variable_global_array_set("myarray", 0, 3.14);
NOTOC
This is number 1