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

PivotGridField.CollapseValue(Object) Method

Collapses the column/row that contains the specified value.

Namespace: DevExpress.Xpf.PivotGrid

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

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

Declaration

public void CollapseValue(
    object value
)

Parameters

Name Type Description
value Object

An object specifying the value in the grouping column/row which should be collapsed.

Remarks

When the current field is placed within the Column Header Area the CollapseValue method collapses the grouping column which corresponds to the current field that contains the specified value.

When the field is placed within the Row Header Area the CollapseValue method collapses the grouping row that contains the specified value.

To collapse all grouping rows/columns which correspond to the current field use the PivotGridField.CollapseAll method.

Grouping rows/columns corresponding to a field can be collapsed and expanded by end-users if the field’s PivotGridField.AllowExpand property is set to True.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CollapseValue(Object) 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