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

PivotGridOptionsCustomization.DeferredUpdates Property

Gets or sets whether dragging fields within the Customization Form (when it’s painted using the Excel2007 style) immediately updates the layout of fields in the PivotGrid control.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v18.2.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool DeferredUpdates { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the layout of fields in the PivotGrid control must not be immediately updated; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to DeferredUpdates
WinForms Controls PivotGridControl
.OptionsCustomization.DeferredUpdates
ASP.NET Controls and MVC Extensions ASPxPivotGrid
.OptionsCustomization.DeferredUpdates
MVCxPivotGrid
.OptionsCustomization.DeferredUpdates
PivotGridSettings
.OptionsCustomization.DeferredUpdates
Reporting XRPivotGrid
.OptionsCustomization.DeferredUpdates

Remarks

Use the DeferredUpdates option to specify the initial state of the ‘Defer Layout Update’ check box in the Customization Form. This check box is visible when the PivotGridOptionsCustomization.CustomizationFormStyle option is set to Excel2007.

When the ‘Defer Layout Update’ check box is checked, dragging fields in the Customization Form doesn’t immediately update the layout. To update the layout, click the ‘Update’ button in the Customization Form.

See Also