Back to Devexpress

SchedulerDataStorage.DateTimeSavingMode Property

windowsforms-devexpress-dot-xtrascheduler-dot-schedulerdatastorage-727ecf60.md

latest2.6 KB
Original Source

SchedulerDataStorage.DateTimeSavingMode Property

Gets or sets in what time zone to store the appointment dates.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
[DefaultValue(DateTimeSavingMode.Appointment)]
public DateTimeSavingMode DateTimeSavingMode { get; set; }
vb
<DefaultValue(DateTimeSavingMode.Appointment)>
Public Property DateTimeSavingMode As DateTimeSavingMode

Property Value

TypeDefaultDescription
DateTimeSavingModeAppointment

A DateTimeSavingMode enumeration member that specifies a conversion required before storing the DateTime value.

|

Available values:

NameDescription
Appointment

Do not convert Start and End appointment values before storing them in the data source.

| | Storage |

Convert Start and End appointment values to the time zone of the SchedulerControl before storing them in the data source.

| | Utc |

Convert Start and End appointment values to UTC before storing them in the data source.

|

Remarks

If for any reason (e.g. to simplify queries for DateTime values stored in the data source) you require that the appointment start and end data belong to the same time zone, set the DateTimeSavingMode to the DateTimeSavingMode.Storage value to store them in the timezone of the storage (specified using the SchedulerDataStorage.TimeZoneId property).

Tip

Use the UTC time zone for the storage and set the DateTimeSavingMode to the DateTimeSavingMode.Storage value in your applications to make the DateTime data consistent throughout different databases used in your applications.

See Also

SchedulerDataStorage Class

SchedulerDataStorage Members

DevExpress.XtraScheduler Namespace