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

ASPxPivotGrid.IsUpdateLocked Property

Gets whether the ASPxPivotGrid has been locked for updating.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public bool IsUpdateLocked { get; }

Property Value

Type Description
Boolean

true, if the ASPxPivotGrid control is locked; otherwise, false.

Remarks

The ASPxPivotGrid.BeginUpdate and ASPxPivotGrid.EndUpdate methods use an internal counter to implement the required functionality. The counter’s initial value is 0. Each call of the BeginUpdate method increments the counter, each call of the EndUpdate decrements the counter and if its new value is zero, change notifications are enabled. Use the IsUpdateLocked property to determine the collection state. If the counter’s value is 0 (zero), the IsUpdateLocked method returns false.

See Also