TriggerType Property

Specifies when the timer's OnTimeOut event is retriggered.

Syntax

object.TriggerType [= Long]  

Properties

The TriggerType property syntax has these parts:

Part

Description

object

An object expression that evaluates to an object in the Applies To list.

Long

When the OnTimeOut event is triggered.

Settings

The settings for Long are:

Value

Description

0

One-shot.

1

Continuous.

2

Daily.

3

Monthly.

Remarks

One-Shot The Timer triggers at the start time, then disables itself.

Continuous The Timer triggers at the start time then re-schedules the timer based on the current time plus the configured interval.

Daily The Timer triggers at the start time for those days that have been enabled (see DaysOfWeek). If the user has enabled end time then the timer is retriggered using the interval until the time exceeds the configured end time.

Monthly The Timer triggers at the start time for every day the user has enabled (see DaysOfMonth). If the user has enabled end time then the timer is retriggered using the interval until the time exceeds the configured end time.

 

Applies To