Exago .NET API Documentation
Parameters Property (Api)
Example 
WebReports.Api Namespace > Api Class : Parameters Property

Parameters are used throughout the Exago application to store values. Although parameters can be created and given a default value in the Administration Console, parameters are designed to be set at runtime through the API.

Parameters are Parameter objects and are managed through a ParameterCollection object, accessible through this property.

Syntax
public ParameterCollection Parameters {get;}
Example
Set values for the built-in system parameters userId and companyId as the session is created
Api api = new Api("C:\\Program Files\\Exago\\ExagoWeb\\");

api.Parameters.GetParameter("userId").Value = textBox1.Text;
api.Parameters.GetParameter("companyId").Value = textBox2.Text;
See Also

Reference

Api Class
Api Members

Exago Knowledge Base

Parameters