Skip to main content

AppointmentDragEventArgs.ForceUpdateFromStorage Property

Gets or sets whether the View is forced to query appointments from the storage.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public bool ForceUpdateFromStorage { get; set; }

Property Value

Type Description
Boolean

true to query appointments from storage; otherwise, false.

Remarks

The ForceUpdateFromStorage property can be used to force the Scheduler view to update itself by querying appointments from the storage. To switch this behavior on, you should set the property value to true within the SchedulerControl.AppointmentDrag handler. By default, it is false.

To find a situation in which this property is useful, review the following code example which demonstrates how an appointment is repositioned to another date by dragging it to the DateNavigator control.

See Also