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