Skip to main content

SchedulerControl.TimeZone Property

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

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

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 Scheduler operates. Refer to the Microsoft Time Zone Index Values topic for the list of all available time zones.

Note

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

If the TimeZone property is set to null, the system time zone is used (TimeZoneInfo.Id.Local). The ActualTimeZone property indicates the time zone used by the Scheduler.

Refer to the following topic for more information: Time Zones.

See Also