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

ParameterBindingCollection Class

A collection of ParameterBinding objects.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v17.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public class ParameterBindingCollection :
    Collection<ParameterBinding>

The following members return ParameterBindingCollection objects:

Remarks

A ParameterBindingCollection object is returned by the XRSubreport.ParameterBindings property.

Example

This example illustrates how to pass the value of a report parameter to a subreport placed in a another report.

To do this, create a ParameterBinding object and add it to the XRSubreport.ParameterBindings collection.

In this example, the main report is bound to the Categories table of the sample Northwind database (nwind.mdb file is shipped with XtraReport installation). A detail report should use data from the Products table of the same database and contain an appropriate CatID parameter.

To learn how to solve this task without writing any code, see Creating a Master-Detail Report using Subreports.

using DevExpress.XtraReports.UI;
// ...

private void XtraReport1_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) {
    XtraReport report = sender as XtraReport;
    XRSubreport subreport = report.FindControl("xrsubreport1", true) as XRSubreport;
    ParameterBinding parameterBinding = new ParameterBinding("CatID", null, "Categories.CategoryID");
    subreport.ParameterBindings.Add(parameterBinding);
}

Inheritance

Object
Collection<ParameterBinding>
ParameterBindingCollection
See Also