Value - property of the PmaString object
Description:
String value of this object.
Note:
Property access
for read and write.
The preset 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 oString = pMe.Pm("/String0");
var value = oString.Value;
// or
oString.Value = "Test";
Dim oString, value
Set oString = pMe.Pm("/String0")
value = oString.Value
' or
oString.Value = "Test"