Value - property of the PmaNumber object
Description:
Numeric value of this object.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Initial value" configurator of this object.
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.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oNumber = pMe.Pm("/Number0");
var val = oNumber.Value;
// Reading from the property
oNumber.Value = val;
// Writing into the property
Dim oNumber
Set oNumber = pMe.Pm("/Number0")
Dim val
val = oNumber.Value
' Reading from the property
oNumber.Value = val
' Writing into the property