BaseObject.IsUpdateLocked Property
Gets whether the object has been locked for updating.
Namespace: DevExpress.XtraGauges.Core.Base
Assembly: DevExpress.XtraGauges.v24.1.Core.dll
NuGet Package: DevExpress.Gauges.Core
Declaration
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