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

WebReportServiceController.CustomizeParameterEditors Event

Occurs when an editor control is created for the report parameter.

Namespace: DevExpress.ExpressApp.ReportsV2.Web

Assembly: DevExpress.ExpressApp.ReportsV2.Web.v19.1.dll

Declaration

public event EventHandler<CustomizeParameterEditorsEventArgs> CustomizeParameterEditors

Event Data

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

Property Description
Editor Specifies the value editor associated with the current parameter.
Parameter Gets the parameter, for which a custom editor is being provided.
Report Gets the report for which a custom parameters editor is implemented.
ShouldSetParameterValue For internal use.

Remarks

Handle this static event to specify a custom editor control used to edit a parameter value when a report is being previewed. Pass your custom control via the handler’s CustomizeParameterEditorsEventArgs.Editor parameter. The specified control will be used for any report in the application. An example is provided in the How to: Use a Custom Editor for an XtraReport Parameter topic.

See Also