Skip to main content

ASPxDashboardExporter(DashboardConfigurator) Constructor

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

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v23.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Dashboard

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