Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

PivotLocation.PageRange Property

Gets the cell range that contains the page area of the PivotTable report.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

Range PageRange { get; }

Property Value

Type Description
Range

A Range object that is the contiguous or noncontiguous (union) range of cells occupied by the page fields.

Remarks

The page area is highlighted in the following image.

PivotLocation_PageRange

To get a cell range that contains the entire pivot table including the page area, use the PivotLocation.WholeRange property. To obtain the cell range occupied by the pivot table disregarding the page area, use the PivotLocation.Range property. The PivotLocation.DataRange property returns the cell range that contains the PivotTable’s summary values. The PivotLocation.ColumnRange and PivotLocation.RowRange properties return cell ranges containing the PivotTable’s column area and row area, respectively.

See Also