Enabled - property of the PmaTimer object
Description:
Enable/disable the timer.
Values:
true - timer is functional, i.e. the
onTick event is triggered
false - event is not triggered
Note:
Property access
for read and write.
The default value of this property is defined in the "
Timer enabled at startup" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTimer = pMe.Pm("/Timer");
var bEnabled = oTimer.Enabled;
// Reading from the property
oTimer.Enabled = true;
// Writing into the property
Dim oTimer
Set oTimer = pMe.Pm("/Timer")
Dim bEnabled
bEnabled = oTimer.Enabled
' Reading from the property
oTimer.Enabled = true
' Writing into the property