ReportDesignExtension.AddParameterTypes(IDictionary<Type, String>) Method
Adds custom parameter types to the ReportDesignExtension.
Namespace: DevExpress.XtraReports.Extensions
Assembly: DevExpress.XtraReports.v24.2.Extensions.dll
NuGet Package: DevExpress.Win.Reporting
Declaration
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