Enabled - property of the PmgObject object
Description:
Enable/disable any control, i.e. user entry to the object or its subobjects.
Values:
true - object captures events triggered by the user (by clicking the mouse, pressing the key, etc.)
false - object doesn't capture any event that is triggered by the user
Note:
Property access
for read and write. The preset value of this property is defined in the "
Control enabled" configurator of this object.
This property is also functional in
Web panels.
If this property is changed the
onModeChange event is triggered.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oItem = pMe.Items("/Txt0");
var bEnabled = oItem.Enabled; //reading
oItem.Enabled = true; //writing
Dim oItem, bEnabled
Set oItem = pMe.Items("/Txt0")
bEnabled = oItem.Enabled 'reading
oItem.Enabled = true 'writing
History:
Pm8.03.26:
Fixed bug: Sometimes did not work if set by script or data binding.