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

WebReportServiceController.NewReportWizardShowing Event

Occurs before invoking the Report Wizard dialog.

Namespace: DevExpress.ExpressApp.ReportsV2.Web

Assembly: DevExpress.ExpressApp.ReportsV2.Web.v18.2.dll

Declaration

public event EventHandler<WebNewReportWizardShowingEventArgs> NewReportWizardShowing

Event Data

The NewReportWizardShowing event's data class is WebNewReportWizardShowingEventArgs. The following properties provide information specific to this event:

Property Description
ReportDataType Gets the report data type used by the Reports module.
WizardParameters Specifies report wizard parameters.

Remarks

The NewReportWizardShowing event is raised as the result of invoking the ReportServiceController.ShowWizard method. Handle this event to customize parameters displayed in the Report Wizard dialog. An example is provided in the How to: Add a Custom Column to the Reports List topic.

See Also