Skip to main content
A newer version of this page is available. .

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.v19.1.dll

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.

The AppointmentItem.TimeZoneId property defines the time zone for a particular appointment. When the appointment is displayed or modified, the DateTime values are converted form the time zone specified by the AppointmentItem.TimeZoneId property to the TimeZone time zone.

Use the DataSource.DateTimeSavingMode property to specify what time zone to use when saving the appointments.

See Also