S
suresh j
Guest
Hi,
In skill is it possible to connect a function to a variable so that the
function will get called automatically whenever the variable's value is
changed.
e.g..
procedure( ABCprintAGotChanged(x)
let(()
printf("New value of a is : %L.\n", x)
)
)
a = 12;
connect(a, ABCprintAGotChanged(x));or connect('a, ABCprintAGotChanged(x))
a = 13;
Suresh J
In skill is it possible to connect a function to a variable so that the
function will get called automatically whenever the variable's value is
changed.
e.g..
procedure( ABCprintAGotChanged(x)
let(()
printf("New value of a is : %L.\n", x)
)
)
a = 12;
connect(a, ABCprintAGotChanged(x));or connect('a, ABCprintAGotChanged(x))
a = 13;
Thanks and regards,>>New value of a is : 13
Suresh J