Skip to main content

DashboardPrintPreviewOptions.DashboardStatePosition Property

Gets or sets a position of the dashboard state (such as master filter or current parameter values) in the printed document.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(DashboardStateExportPosition.Below)]
public DashboardStateExportPosition DashboardStatePosition { get; set; }

Property Value

Type Default Description
DashboardStateExportPosition Below

A DashboardStateExportPosition object that specifies a position of the dashboard state in the printed document.

Available values:

Name Description
Below

The dashboard state is placed below the exported dashboard/dashboard item.

SeparatePage

The dashboard state is placed on a separate page.

Property Paths

You can access this nested property as listed below:

Object Type Path to DashboardStatePosition
BeforeExportDocumentEventArgs
.PrintPreviewOptions .DashboardStatePosition
CustomExportBaseEventArgs
.PrintPreviewOptions .DashboardStatePosition
DashboardDesigner
.PrintPreviewOptions .DashboardStatePosition
DashboardViewer
.PrintPreviewOptions .DashboardStatePosition
IDashboardControl
.PrintPreviewOptions .DashboardStatePosition
DashboardControl
.PrintPreviewOptions .DashboardStatePosition

Remarks

To add a master state to the printed document, use the DashboardPrintPreviewOptions.ExportFilters property. To print current parameter values, enable the DashboardPrintPreviewOptions.ExportParameters flag.

See Also