SunsetDt

Purpose

This function returns the time of sunset.  This is a read-only property.

Parameters

None.

Returns

Return value: sunset time
Type: date
Description: This is a date type representing the time of sunset.

Example

sub main()

dim t

t=hs.SunsetDt
msgbox "Sunset is at " & FormatDateTime(t, vbLongTime)

end sub