[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Subreport.Parameters

Parameters Property

Parameters

Gets the parameters associated with the subreport.

Declaration
public ParameterCollection Parameters { get; }
Property Value
Type Description
ParameterCollection

A ParameterCollection object containing parameters for the subreport.

Remarks

If the subreport is executed without parameters and lacks Toggle elements, it runs only once even when nested within a list, table, or matrix.

Examples
Subreport subreport = new Subreport();
var parameters = subreport.Parameters;
parameters.Add(new Parameter("OrderID", "10248"));