Skip to main content

CalendarBase.TimeZone Property

Gets or sets the time zone for the Calendar. This is a dependency property.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnTimeZoneChanged")]
[TypeConverter(typeof(TimeZoneInfoTypeConverter))]
public TimeZoneInfo TimeZone { get; set; }

Property Value

Type Description
TimeZoneInfo

A System.TimeZoneInfo object identifying a time zone.

Remarks

Use the TimeZone to specify the basic time zone in which the Calendar operates. Refer to the Microsoft Time Zone Index Values topic for the list of all available time zones.

The Calendar is not able to read a custom time zone created by calling the standard System.TimeZoneInfo.CreateCustomTimeZone method.

See Also