-
Notifications
You must be signed in to change notification settings - Fork 0
Variable_local_array_set
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Sets the value of the local 1-dimensional array with the given name.
| 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 |
void: This function does not return anything.
// demonstrates setting a value in a local array by looking it up by string name
variable_local_array_set("myarray", 0, 3.14);
NOTOC
This is number 1