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

PivotPageFieldCollection Interface

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

Namespace: DevExpress.Spreadsheet

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

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