Skip to main content

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

PrintLayoutMode Enum

Lists values that specify the layout mode of the print document.

Namespace: DevExpress.Xpf.PivotGrid.Printing

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public enum PrintLayoutMode

#Members

Name Description
SinglePageLayout

The pivot grid is represented by a single table.

This mode is preferred when the pivot grid is exported to the XLS or image format.

The following image displays the pivot grid exported to an image format using the Single Page layout mode. The dashed red line shows where the pivot grid will be cut off by the page boundaries if it is printed using this mode.

pivotgrid_PrintLayoutMode_SinglePage

MultiplePagesLayout

If the pivot grid does not fit onto one page, it is split into several tables.

This mode is preferred when the pivot grid is printed or exported to a paged document.

The following image displays the pivot grid exported to an image format using the Multiple Pages layout mode. The dashed red line shows where the pivot grid will be cut off by the page boundaries if it is printed using this mode.

pivotgrid_PrintLayoutMode_MultiplePage

Auto

The layout mode is selected automatically.

The Multiple Pages layout mode is applied when the pivot grid is printed or exported to a paged document. The Single Page layout mode is applied when the pivot grid is exported to the XLS or image format.

#Related API Members

The following properties accept/return PrintLayoutMode values:

#Remarks

Values listed by this enumeration are used to set the PivotGridControl.PrintLayoutMode property.

See Also