Skip to main content

PivotGridControl.ExpandAllColumns() Method

Expands all columns.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v23.2.dll

NuGet Package: DevExpress.Win.PivotGrid

Declaration

public void ExpandAllColumns()

Remarks

This method expands all columns that correspond to Column Fields. To expand all columns that correspond to a particular Column Field, use the PivotGridFieldBase.ExpandAll method. The PivotGridFieldBase.ExpandValue method allows you to expand individual columns.

To expand all columns asynchronously, use the PivotGridControl.ExpandAllColumnsAsync method.

To collapse all columns, use the PivotGridControl.CollapseAllColumnsAsync (asynchronous) or PivotGridControl.CollapseAllColumns (synchronous) method.

To expand or collapse all rows asynchronously, use the PivotGridControl.ExpandAllRowsAsync and PivotGridControl.CollapseAllRowsAsync methods, respectively (or the PivotGridControl.ExpandAllRows and PivotGridControl.CollapseAllRows methods to do this synchronously).

See Also