Skip to main content
Row

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

PivotPageFieldCollection Interface

Represents a collection of fields located in the report filter area of a pivot table.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public interface PivotPageFieldCollection :
    ISimpleCollection<PivotPageField>,
    IEnumerable<PivotPageField>,
    IEnumerable,
    ICollection

The following members return PivotPageFieldCollection objects:

#Remarks

The PivotPageFieldCollection object stores all page fields added to a PivotTable report. Use the PivotTable.PageFields property to access this collection. The PivotPageFieldCollection.Item property enables you to get an individual page field by its name or index in the collection.

To add a page field to the pivot table, use the PivotPageFieldCollection.Add or PivotPageFieldCollection.Insert method. To remove a page field from the PivotTable report, use the PivotPageFieldCollection.Remove or PivotPageFieldCollection.RemoveAt method.

See Also