ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.ActiveReports.Viewer.Win Namespace / ReportParameter Class / ReportParameter Constructor

In This Topic
    ReportParameter Constructor
    In This Topic
    Overload List
    OverloadDescription
    Initializes a new instance of the ReportParameter class with a single value.  
    Initializes a new instance of the ReportParameter class with multiple values. This snippet shows how to create a new ReportParameter. List<object> values = new List<object> { 1, 2, 3, "Hello", DateTime.Now }; ReportParameter parameter = new ReportParameter("MyParameter", values);  
    Initializes a new instance of the ReportParameter class without any values.  
    See Also