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

ReportDesignExtension.RegisterExtension(ReportDesignExtension, String) Method

Registers the custom report design extension to serialize custom parameter types.

Namespace: DevExpress.XtraReports.Extensions

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

Declaration

public static void RegisterExtension(
    ReportDesignExtension extension,
    string contextName
)

Parameters

Name Type Description
extension ReportDesignExtension

A ReportDesignExtension object.

contextName String

A String value, identifying the context.

Remarks

You can use the RegisterExtension property to serialize custom report parameters along with a report’s definition.

To provide parameters of custom types to your report, you should create a custom report design extension inherited from the ReportDesignExtension class.

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

See the following tutorials to learn how to register custom parameter types in reporting applications created for different platforms:

The following code snippets (auto-collected from DevExpress Examples) contain references to the RegisterExtension(ReportDesignExtension, 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