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

ParametersRequestExtension.RegisterExtension(ParametersRequestExtension, String) Method

Registers the custom parameters request extension, to implement custom parameter editors in a print preview.

Namespace: DevExpress.XtraReports.Extensions

Assembly: DevExpress.XtraReports.v19.1.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public static void RegisterExtension(
    ParametersRequestExtension extension,
    string contextName
)

Parameters

Name Type Description
extension ParametersRequestExtension

A ParametersRequestExtension object.

contextName String

A String value, identifying the context.

Remarks

To provide editors to parameters of custom types in a print preview, create a custom parameters request extension inherited from the ParametersRequestExtension class.

Then, register the extension (using the RegisterExtension method) and associate the report with the custom extension (using the ParametersRequestExtension.AssociateReportWithExtension method).

For a code sample, see How to create parameter editors that are dependent on each other’s values.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RegisterExtension(ParametersRequestExtension, String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also