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

ASPxDashboardExporter(DashboardConfigurator) Constructor

Initializes a new instance of the ASPxDashboardExporter class for the specified DashboardConfigurator instance.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v19.1.Web.WebForms.dll

Declaration

public ASPxDashboardExporter(
    DashboardConfigurator dashboardConfigurator
)

Parameters

Name Type Description
dashboardConfigurator DashboardConfigurator

A DashboardConfigurator instance that provides server settings for the Web Dashboard.

Remarks

If you are using the DashboardConfigurator‘s API for the ASPxDashboard control, pass the DashboardConfigurator‘s default instance to the ASPxDashboardExporter constructor.

using DevExpress.DashboardWeb;
//...            
ASPxDashboardExporter exporter = new ASPxDashboardExporter(DashboardConfigurator.Default);
See Also