This property holds the value used to build an optional INTERVALTIME CDF element. When the CDF string for the object is constructed, the property is checked. If it is not null, the <INTERVALTIME> element is added to the string, with the value of the property as the element value.
Type
Integer (VT_I4)
Default
None
Remarks
The IntervalTime property is in units of minutes.
Example
' Using Windows Scripting Host and VBScript
Set Schedule = CreateObject("Push.Schedule")
Schedule.IntervalTime = 12
wscript.echo Schedule.GetCDFString()
outputs:
<SCHEDULE TIMEZONE="-0800">
<INTERVALTIME MIN="12"/>
</SCHEDULE>