Skip to main content

DashboardExcelExportOptions.DashboardStatePosition Property

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

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

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

Property Value

Type Default Description
DashboardStateExcelExportPosition Below

A DashboardStateExcelExportPosition object that specifies the position of the dashboard state in the exported document.

Available values:

Name Description
Below

The dashboard state is placed below the exported data.

SeparateSheet

The dashboard state is placed on a separate sheet.

Property Paths

You can access this nested property as listed below:

Object Type Path to DashboardStatePosition
BeforeExportDocumentEventArgs
.ExcelExportOptions .DashboardStatePosition
CustomizeExportDocumentEventArgs
.ExcelExportOptions .DashboardStatePosition
ASPxDashboard
.ExcelExportOptions .DashboardStatePosition
BeforeExportDocumentWebEventArgs
.ExcelExportOptions .DashboardStatePosition
CustomizeExportDocumentWebEventArgs
.ExcelExportOptions .DashboardStatePosition
DashboardExtensionSettings
.ExcelExportOptions .DashboardStatePosition
DashboardDesigner
.ExcelExportOptions .DashboardStatePosition
DashboardViewer
.ExcelExportOptions .DashboardStatePosition
IDashboardControl
.ExcelExportOptions .DashboardStatePosition
DashboardControl
.ExcelExportOptions .DashboardStatePosition

Remarks

To add a master state to the exported document, use the DashboardExcelExportOptions.ExportFilters property. To export current parameter values, enable the DashboardExcelExportOptions.ExportParameters flag.

See Also