Class TimeZone (Outlook VBA)
The class TimeZone represents information for a time zone as supported by Windows.
Class AppointmentItem gives access to class TimeZone.
Dim tze as TimeZone
Set tze = TimeZones(Index:=1)
For Each
Here is an example of processing the TimeZone items in a collection.
Dim tze As TimeZone
For Each tze In TimeZones
Next tze
Properties
Bias returns a Long value that represents the difference in minutes of between the local time in this time zone and the Coordinated Universal Time (UTC).
Class returns an OlObjectClass constant that represents the object's class.
DaylightBias returns a Long value that represents the time offset in minutes from the Bias to account for daylight time in this time zone.
DaylightDate returns a Date value that represents the date and time in this time zone when time changes over to daylight time in the current year.
DaylightDesignation returns a String that identifies the time zone in daylight time.
ID returns a String that uniquely identifies the time zone.
Name returns a String that represents the identifier of the time zone.
Session returns the NameSpace object for the current session.
StandardBias returns a Long value that represents the time offset in minutes from the Bias to account for standard time in this time zone.
StandardDate returns a Date value that represents the date and time in this time zone when time changes over to standard time.
StandardDesignation returns a String that identifies the time zone in standard time.
Related Classes
NameSpace - Represents an abstract root object for any data source.