ASPxDashboardExporter(ASPxDashboard) Constructor
In This Article
Initializes a new instance of the ASPxDashboardExporter class for the specified ASPxDashboard control.
Namespace: DevExpress.DashboardWeb
Assembly: DevExpress.Dashboard.v24.2.Web.WebForms.dll
NuGet Package: DevExpress.Web.Dashboard
#Declaration
public ASPxDashboardExporter(
ASPxDashboard dashboard
)
#Parameters
Name | Type | Description |
---|---|---|
dashboard | ASPx |
An ASPx |
#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