[]
Gets the parameters associated with the subreport.
public ParameterCollection Parameters { get; }
Type | Description |
---|---|
ParameterCollection | A ParameterCollection object containing parameters for the subreport. |
If the subreport is executed without parameters and lacks Toggle elements, it runs only once even when nested within a list, table, or matrix.
Subreport subreport = new Subreport();
var parameters = subreport.Parameters;
parameters.Add(new Parameter("OrderID", "10248"));