TimeZoneList

(Engine-Level Function)

Description: Returns a list of time zones.
Returns: Array of text
Usage: Script Only.
Function Groups: Time and Date
Related to: ConvertTimeStamp | TimeZone
Format: TimeZoneList()
Parameters:

None

Comments: Entries in the returned list may be used as parameters for the ConvertTimestamp function.
TimeZoneList produces a list of time zones in English, even on non-English versions of Windows.

Example:

Init [
  If 1 Main;
  [
    { Get a list of time zones }
    TZList = TimeZoneList();
  ]
]