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

DateNavigator.IsUpdateLocked Property

Gets whether the object has been locked for updating.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.dll

Declaration

[Browsable(false)]
public bool IsUpdateLocked { get; }

Property Value

Type Description
Boolean

true if the control is locked; otherwise, false.

Remarks

Use the IsUpdateLocked property as a semaphore, signaling that the control is locked for update. It indicates whether the value of an internal counter, used by DateNavigator.BeginUpdate and DateNavigator.EndUpdate methods, is not equal to zero, so that a new modification can not be initiated. Refer to the descriptions of these methods for more information.

See Also