Skip to main content

PivotGridControl.PrintHeadersOnEveryPage Property

Gets or sets whether to print field headers on every page. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public bool PrintHeadersOnEveryPage { get; set; }

Property Value

Type Description
Boolean

true to print field headers on every page; otherwise, false.

Remarks

If the PrintHeadersOnEveryPage property is set to false, the field headers are printed on the first page only.

The PrintHeadersOnEveryPage property is in effect if the PivotGridControl.PrintLayoutMode property is set to PrintLayoutMode.MultiplePagesLayout. In this instance, the column and row headers are printed on every page, allowing you to specify whether to print the field headers above them. If the PivotGridControl.PrintLayoutMode property is set to PrintLayoutMode.SinglePageLayout, the field headers are printed on the first page only regardless of the PrintHeadersOnEveryPage property’s value.

To learn more, see Printing and Exporting.

See Also