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

BaseObject.IsUpdateLocked Property

Gets whether the object has been locked for updating.

Namespace: DevExpress.XtraGauges.Core.Base

Assembly: DevExpress.XtraGauges.v19.1.Core.dll

Declaration

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

Property Value

Type Description
Boolean

true if the object 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 BaseObject.BeginUpdate and BaseObject.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