DSP dspGetValue()
syntax: |
dsp.dspGetValue() |
return: |
variable - remote value of the current DSP reference.
|
description: |
This function provides an explicit way to convert a DSP reference into a value. Such conversion is done automatically when the reference is converted to a primitive, or a value is assigned to a reference. See the introduction, under creating a DSP object, for more information on DSP references and getting remote values.
|
see: |
#link <sedsp>
|
example: |
var reference = connection.globalValue; var value = connection.globalValue.dspGetValue(); reference = 5; // This will change the remote value value = 6; // This will change the local copy, not the remote |