vsTASKER 7 User Manual
×
Menu
Index

Using Setters

 
SET[...]: specify the name given to the setter function for this variable. This setter will be used in the setUserData function. The setter code will be automatically added.
 
ie:
int my_value; //&& SET[setTemperature]
 
NOSET: setter function will not be generated and value will be directly assign in the setUserData function (ie: foo = 17;)
USRSET or USERSET: cancel automatic setter generation code to allow user to define its own.
 
ie:
int my_value; //&& SET[setTemperature] USRSET