EndDate Property

This property holds the value used to build an optional ENDDATE attribute. When the CDF string for the object is constructed, the property is checked. If it is not null, the ENDDATE attribute is added to the string, with the value of the property.

Type

Date (VT_DATE)

Default

None

Example

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

outputs:

<SCHEDULE ENDDATE "1997-12-12" TIMEZONE="-0800" >
</SCHEDULE>

© 1997-1998 Microsoft Corporation. All rights reserved.