This property holds the value used to build an optional STARTDATE attribute. When the CDF string for the object is constructed, the property is checked. If it is not null, the STARTDATE attribute is added to the string, with the value of the property.
Type
Date (VT_DATE)
Default
None
Example
' Using Windows Scripting Host and VBScript
Set Schedule = CreateObject("Push.Schedule")
Schedule.StartDate = #12/12/97#
wscript.echo Schedule.GetCDFString()
outputs:
<SCHEDULE STARTDATE "1997-12-12" TIMEZONE="-0800" >
</SCHEDULE>