Classification
OTL Syntax
BooleanTerm = EventHandling.IsTimerExpiredEvent(EventTerm);
Description
The OTX IsTimerExpiredEvent term is TRUE back when the event if and only from TimerExpiredEventSource comes.
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
Boolean |
Returns TRUE if the event comes from a TimerExpiredEventSource.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
Event |
Event |
Term |
- |
[1] |
The event, whose type is checked.
|
OTL Examples
EventHandling.EventSource EventSource1;
EventHandling.Event Event1;
Boolean Boolean1 = false;
EventSource1 = EventHandling.TimerExpiredEventSource(100);
EventHandling.WaitForEvent({EventSource1}, Event1);
Boolean1 = EventHandling.IsTimerExpiredEvent(Event1);
See also
IsTresholdExceededEvent
IsMonitorChangeEvent
GetNewValue