Value - property of object ExtSubVar
Description:
Value of the variable.
Calling:
v = oData.Item(id).Extension("sv").Value
Note:
Property access
for read and write. The preset value of this property is defined in the "
Value" configurator of this object. The value of this property can be also obtained in the
INFO system in
"PmRoot" item (when looking into the object with this property).
Example1:
Examples of obtaining this property in script.
VBScriptSelect and copy to clipboard
value = pMe.Pm("/data/#vars/Temperature/#ext/sv").Value
'or
value = pMe.Pm("/data/#vars/Temperature").Extension("sv").Value
'or
value = pMe.Pm("/data").Item("Temperature").Extension("sv").Value
Example2:
The example of obtaining this property by
Macro expression from another data extension via
pDE variable.