Value - property of the PmVar object
Description:
Value of the variable.
Note:
Property access
for read and write.
The value of this property can be also obtained in the "
PmaRoot" item of the INFO system (when looking into the object with this property). This property can be changed in the INFO system by clicking the "
Actions" button. See "
PmaRoot > Permissions > InfoEdit" permission.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var val = pMe.Pm("/Data/#vars/variable").Value;
// Reading from the property
Dim val
val = pMe.Pm("/Data/#vars/variable").Value
' Reading from the property
Example2:
JavaScriptVBScriptSelect and copy to clipboard
var oData = pMe.Pm("/Data");
var val = oData.Item(2).Value;
// Reading from the property
Dim oData
Set oData = pMe.Pm("/Data")
Dim val
val = oData.Item(2).Value
' Reading from the property