-
Notifications
You must be signed in to change notification settings - Fork 0
Variable_global_array2_get
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Gets the value of the global 2-dimensional array with the given name.
| Parameter | Data Type | Description |
|---|---|---|
| name | string | global variable name of the array |
| ind1 | integer | first index of the array |
| ind2 | integer | second index of the array |
variant: Returns the variable retrieved from the array.
// demonstrates obtaining a value from a global array by looking up the array by its string name
var val;
val = variable_global_array2_get("myarray", 0, 0);
NOTOC
This is number 1