PivotGridControl.IsFieldValueCollapsed(Boolean, Object[]) Method
Indicates whether the specified field value is collapsed.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package: DevExpress.Wpf.PivotGrid
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| isColumn | Boolean |
|
| values | Object[] | An array of column or row field values that identify the field value. |
Returns
| Type | Description |
|---|---|
| Boolean |
|
Remarks
Consider the following PivotGridControl:

The following table illustrates how to use the IsFieldValueCollapsed method to obtain whether particular field values are collapsed.
| Field Value | Method Usage | Return Value |
|---|---|---|
| 1994, Aniseed Syrup | pivotGrid.IsFieldValueCollapsed(true, "Aniseed Syrup", 1994); |
false |
| 1995, Aniseed Syrup | pivotGrid.IsFieldValueCollapsed(true, "Aniseed Syrup", 1995); |
true |
See Also