Object Properties and Variables
Posted: Sat Apr 11, 2015 9:19 am
My question is,
If I have some code like this:
Do I then need to SetObjProperty(who, "Property", something) to save the change?
My answer to this is yes, but I just wanted to be sure about it, since I have a script that constantly changes a structure that is related to a property.
If I have some code like this:
Code: Select all
var something := struct;
something := GetObjProperty(who, "Property");
Later on...
something.elem := "blahblah";
My answer to this is yes, but I just wanted to be sure about it, since I have a script that constantly changes a structure that is related to a property.