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

ParametersRequestExtension.AssociateReportWithExtension(XtraReport, String) Method

Associates the report with the custom parameter extension, to implement custom parameter editors in a print preview.

Namespace: DevExpress.XtraReports.Extensions

Assembly: DevExpress.XtraReports.v21.2.Extensions.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Reporting

Declaration

public static void AssociateReportWithExtension(
    XtraReport report,
    string contextName
)

Parameters

Name Type Description
report XtraReport

An XtraReport 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 ParametersRequestExtension.RegisterExtension method) and associate the report with the custom extension (using the AssociateReportWithExtension method).

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

See Also