void SetStringArray(string strname, int index, string value)
Sets the value of an index inside an string array variable. Does not work on string arrays inside structs currently.
string name[98]; string my_var = "name"; // my_var now points to name. int my_index = 21; // my_index is set to 21. SetStringArray(my_var,"Ralph"); // Sets the value of name[21] to "Ralph".
There are no talkbacks on this documentation page yet. Post the first?
Doc Nav |
Your docs |