Variable_local_set - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets the value of the local variable with the given name.
Parameters
Parameter | Data Type | Description |
---|---|---|
name | string | name of the local variable |
value | variant | value to give the local variable |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting the value of a local variable
variable_local_set("cat", 3);
NOTOC