Value - property of the PmfString object
Description:
Pmf object value.
Note:
Property access
for read and write.
This property is also functional in
Web panels.
If the
oExtra.onChange entry is set when opening the window and if the user changes this value in the configurator, then the user event is triggered with
oSystem.ChangeType = "value" flag.
Example1:
JavaScriptSelect and copy to clipboard
// Setting the property when the object is created
var oString = oForm.CreateItem("string", "IdStr", "Title", "Value:value");
var nValue = oString.Value;
// Reading from the property
oString.Value = "value";
// Writing into the property