Sunset

Purpose

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

Parameters

None.

Returns

Return value: sunset time
Type: string
Description: This is a string representing the time of sunset.  The string returned is formatted according to your system's setting for time display but with seconds removed (e.g., if there are three fields separated by colons, the third one is removed).

Example

sub main()

dim t

t=hs.Sunset
msgbox "Sunset is at " & t

end sub