wpf-devexpress-dot-xpf-dot-scheduling-dot-schedulercontrol-6cd4c323.md
Gets or sets the time zone for the Scheduler. This is a dependency property.
Namespace : DevExpress.Xpf.Scheduling
Assembly : DevExpress.Xpf.Scheduling.v25.2.dll
NuGet Package : DevExpress.Wpf.Scheduling
public TimeZoneInfo TimeZone { get; set; }
Public Property TimeZone As TimeZoneInfo
| Type | Description |
|---|---|
| TimeZoneInfo |
A System.TimeZoneInfo object identifying a time zone.
|
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