Enabled - property of the PmEventItem object
Description:
Enable/disable of the event item.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Enabled" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oEv = pMe.Pm("/Event");
var oEvItem = oEv.Item("Temperature");
oEvItem.Enabled = true;
Dim oEv
Set oEv = pMe.Pm("/Event")
Dim oEvItem
Set oEvItem = oEv.Item("Temperature")
oEvItem.Enabled = true