EarliestTime Property

This property holds the value used to build an optional EARLIESTTIME CDF element. When the CDF string for the object is constructed, the property is checked. If it is not null, the <EARLIESTTIME> element is added to the string, with the value of the property as the element value.

Type

Integer (VT_I4)

Default

None

Example

' Using Windows Scripting Host (cscript.exe) and VBScript
Set Schedule = CreateObject("Push.Schedule")
Schedule.EarliestTime = 12
wscript.echo Schedule.GetCDFString()

outputs:

<SCHEDULE  TIMEZONE="-0800" >
<EARLIESTTIME MIN="12"/>
</SCHEDULE>

© 1997-1998 Microsoft Corporation. All rights reserved.