IsReadOnly - property of the PmaString object
Description:
Detects whether the object is read only.
Syntax:
Boolean IsReadOnly
Values:
true - If the object is read only
false - Otherwise
Note:
Property access for
read only. The value of this property is defined in the "
Read only" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oString = pMe.Pm("/String0");
if (!oString.IsReadOnly)
oString.Value = "Test";
Dim oString
Set oString = pMe.Pm("/String0")
If Not oString.IsReadOnly Then
oString.Value = "Test"
End If