variable_global_array_set(name,ind,value)

From ENIGMA
Revision as of 01:23, 1 April 2014 by RobertBColton (talk | contribs) (Created page with "{{FuncTitle|variable_global_array_set|name,ind,value}} == Description == Sets the value of the global 1-dimensional array with the given name. == Parameters == {| class="funcpar...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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);