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

ASPxDashboardExporter(ASPxDashboard) Constructor

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

Namespace: DevExpress.DashboardWeb

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

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