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

PrintLayoutMode Enum

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

Namespace: DevExpress.Xpf.PivotGrid.Printing

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

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