Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.IsObjectCollapsed(PivotGridField, Int32) Method

Returns whether the specified column field value or row field value is collapsed.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

public bool IsObjectCollapsed(
    PivotGridField field,
    int lastLevelIndex
)

#Parameters

Name Type Description
field PivotGridField

A PivotGridField object that identifies a column or row field.

lastLevelIndex Int32

A zero-based index of a cell in the Data Area that identifies the required field value. Indexes are numbered starting from the left edge for column fields, and from the top edge for row fields.

#Returns

Type Description
Boolean

true if the specified column field value or row field value is collapsed; otherwise, false.

#Remarks

The following image shows cell indexes numerating rows (columns are numerated in the same manner):

CellIndexes

In this example, the IsObjectCollapsed method will return:

  • False for the Country field and cell’s index=0;
  • True for the Country field and cell’s index=1;
  • True for the City field and cell’s index=1;
See Also