Set string variable value in storage.
Syntax |
void set_string(const string &in name, string value) |
---|---|
name |
Variable name |
value |
Value of the variable |
Result |
(none) |
Notes |
Any value that exists is automatically overwritten. |
Example of use:
bool execute(shell::object @shell, const string &in cmdline) { // Set "my_var" with value "value" shell.storage.set_string("my_var", "value"); } |