Multiuser Lingo Dictionary > Multiuser Lingo Dictionary > value (variable) |
![]() ![]() ![]() |
value (variable)
Syntax
whichVariable
.value
Description
Multiuser Server server-side debugging property; indicates the current value of the given variable. This property can be tested and set.
Example
These statements set the variable variableValue
to the value of the seventh variable in the variable list of frame 25 of thread testThread
:
thread = thread(testThread) frameNum = 25 frame = thread.frame(frameNum) varNum = 7 variable = frame.variable(varNum) variableValue = variable.value
![]() ![]() ![]() |