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

ReportDesignExtension.AddParameterTypes(IDictionary<Type, String>) Method

Namespace: DevExpress.XtraReports.Extensions

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

NuGet Package: DevExpress.Win.Reporting

Declaration

public virtual void AddParameterTypes(
    IDictionary<Type, string> dictionary
)

Parameters

Name Type Description
dictionary IDictionary<Type, String>

A collection of custom parameter types.

Remarks

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

To learn more, see Creating Custom Report Parameters.

See Also