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 | Pivot |
A Pivot |
last |
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):
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;