Exago .NET API Documentation
ParameterCollection Class
Members  Example 
WebReports.Api.Common Namespace : ParameterCollection Class
The collection of Parameters that exist in the current configuration. Do not instantiate this collection, instead access it through the Parameters Property of the Api Class.
Syntax
public class ParameterCollection : WebReports.Api.Common.ConfigCollection<Parameter> 
Remarks

Collection classes are enumerable Lists of a specific object type.

See the Example section for ways to iterate through and manipulate Collections.

Example
Set values for the built-in userId and companyId parameters at the beginning of a session from user input fields textBox1 and textBox2 on a form
Api api = new Api("C:\\Program Files\\Exago\\ExagoWeb\\");

api.Parameters.GetParameter("userId").Value = textBox1.Text;
api.Parameters.GetParameter("companyId").Value = textBox2.Text;
Inheritance Hierarchy

System.Object
      WebReports.Api.Common.ParameterCollection

See Also

Reference

ParameterCollection Members
WebReports.Api.Common Namespace

Exago Knowledge Base

Parameters