Variable_global_array_set - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Sets the value of the global 1-dimensional array with the given name.

Parameters

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

Return Values

void: This function does not return anything.

Example Call

// demonstrates setting a value in a global array by looking it up by string name
variable_global_array_set("myarray", 0, 3.14);

NOTOC