Skip to main content

ASPxDashboardExporter(ASPxDashboard) Constructor

Initializes a new instance of the ASPxDashboardExporter class for the specified ASPxDashboard control.

Namespace: DevExpress.DashboardWeb

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

NuGet Package: DevExpress.Web.Dashboard

Declaration

public ASPxDashboardExporter(
    ASPxDashboard dashboard
)

Parameters

Name Type Description
dashboard ASPxDashboard

An ASPxDashboard control instance whose data will be exported using the ASPxDashboardExporter API.

Remarks

To initialize ASPxDashboardExporter for the specified ASPxDashboard control, pass the control’s instance to the ASPxDashboardExporter constructor.

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