IsReadOnly - property of the PmaNumber object
Description:
Detects whether the object value is for read only or for read and write.
Syntax:
Boolean IsReadOnly
Values:
true - The object value is for read only (constant).
false - The object value is for read and write.
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 oNumber = pMe.Pm("/Number0");
var bReadOnly = oNumber.IsReadOnly;
Dim oNumber
Set oNumber = pMe.Pm("/Number0")
Dim bReadOnly
bReadOnly = oNumber.IsReadOnly