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

PivotGridFieldBase.ExpandAll() Method

Expands all columns/rows that correspond to the current column field or row field.

Namespace: DevExpress.XtraPivotGrid

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

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.WindowsDesktop.PivotGrid.Core

Declaration

public void ExpandAll()

Remarks

Use the PivotGridControl.ChangeFieldExpandedAsync method to collapse or expand all values of a particular field, asynchronously. For more information about asynchronous mode, see Asynchronous Mode.

To expand a specific field value, use the PivotGridFieldBase.ExpandValue method. To collapse field values, use the PivotGridFieldBase.CollapseValue and PivotGridFieldBase.CollapseAll methods.

Field values can be collapsed and expanded by end-users, if the field’s PivotGridFieldOptions.AllowExpand property is set to true.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ExpandAll() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also