ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.Viewer.Common.Model Namespace / ParameterizedReportExtensions Class / SetParameter Method
The report with the parameters to update.
The name of the parameter to update.
The new value of the parameter.

In This Topic
    SetParameter Method
    In This Topic
    Updates the value of a parameter in the report.
    Syntax
    'Declaration
     
    Public Shared Sub SetParameter( _
       ByVal parameterizedReport As IParameterizedReport, _
       ByVal name As String, _
       ByVal values As IEnumerable(Of Object) _
    ) 
    public static void SetParameter( 
       IParameterizedReport parameterizedReport,
       string name,
       IEnumerable<object> values
    )

    Parameters

    parameterizedReport
    The report with the parameters to update.
    name
    The name of the parameter to update.
    values
    The new value of the parameter.
    See Also