Skip to main content

PivotGridControl.DeferredUpdates Property

Gets or sets whether dragging fields within the Field List (when it’s painted using the Excel2007 style) immediately updates the layout of fields in the PivotGrid control. This option controls the state of the ‘Defer Layout Update’ check box in the Field List, when the PivotGridControl.FieldListStyle option is set to Excel2007.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public bool DeferredUpdates { get; set; }

Property Value

Type Description
Boolean

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

Remarks

Use the DeferredUpdates option to specify the initial state of the ‘Defer Layout Update’ check box in the Field List. This check box is visible when the PivotGridControl.FieldListStyle option is set to Excel2007.

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

See Also