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

DashboardPrintPreviewOptions.DocumentScaleMode Property

Gets or sets the mode for scaling a dashboard/dashboard item in the printed document.

Namespace: DevExpress.DashboardCommon

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

Declaration

[DefaultValue(DashboardExportDocumentScaleMode.None)]
public DashboardExportDocumentScaleMode DocumentScaleMode { get; set; }

Property Value

Type Default Description
DashboardExportDocumentScaleMode **None**

A DashboardExportDocumentScaleMode enumeration value that specifies the mode for scaling a dashboard/dashboard item in the printed document.

Property Paths

You can access this nested property as listed below:

Object Type Path to DocumentScaleMode
BeforeExportDocumentEventArgs
.PrintPreviewOptions.DocumentScaleMode
CustomExportBaseEventArgs
.PrintPreviewOptions.DocumentScaleMode
CustomExportEventArgs
.PrintPreviewOptions.DocumentScaleMode
CustomizeExportDocumentEventArgs
.PrintPreviewOptions.DocumentScaleMode
DashboardDesigner
.PrintPreviewOptions.DocumentScaleMode
DashboardViewer
.PrintPreviewOptions.DocumentScaleMode
DashboardControl
.PrintPreviewOptions.DocumentScaleMode

Remarks

To change the size of the dashboard or split it into several pages, specify the DocumentScaleMode property. Then specify the following printing options depending on the selected mode.

Scale Mode Related Property Description
DashboardExportDocumentScaleMode.AutoFitToPagesWidth DashboardPrintPreviewOptions.AutoFitPageCount Splits the dashboard into multiple pages, and aligns it.
DashboardExportDocumentScaleMode.UseScaleFactor DashboardPrintPreviewOptions.ScaleFactor Scales the dashboard.
DashboardExportDocumentScaleMode.None n/a The dashboard size is fixed, and other dashboard scaling settings are not in effect.
See Also