Value - property of the PmaString object
Description:
String 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 oString = pMe.Pm("/String0");
var sVal = oString.Value;
// Reading from the property
oString.Value = "Test";
// Writing into the property
Dim oString
Set oString = pMe.Pm("/String0")
Dim sVal
sVal = oString.Value
' Reading from the property
oString.Value = "Test"
' Writing into the property