Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

ReportViewerDetailItem.CustomizeParameterEditors Event

Occurs when standard editors are created for the report parameters, according to their types.

Namespace: DevExpress.ExpressApp.ReportsV2.Web

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

NuGet Package: DevExpress.ExpressApp.ReportsV2.Web

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 the CustomizeParameterEditors event to provide custom editors for report parameters.

See Also