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

ASPxScheduler.CancelUpdate() Method

Unlocks the Scheduler Control after a call to the ASPxScheduler.BeginUpdate method and causes an immediate update without raising any notification events.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v19.2.dll

Declaration

public void CancelUpdate()

Remarks

Calling the ASPxScheduler.BeginUpdate method locks a ASPxScheduler instance to prevent any change notification events from being fired in response to any of its properties being changed. The code performing multiple changes must be enclosed within BeginUpdate/EndUpdate or BeginUpdate/CancelUpdate method calls.

Calling the CancelUpdate method after a call to the ASPxScheduler.BeginUpdate method unlocks the ASPxScheduler object but doesn’t raise any change notifications. To unlock the Scheduler Control and raise all the notification events, call the ASPxScheduler.EndUpdate method.

Implements

DevExpress.Utils.IBatchUpdateable.CancelUpdate()
See Also