The user can set the value of all global parameters,

public void Set(string id, int value);
public void Set(string id, double value);
public void Set(string id, bool value);


read the value of all global parameters

public double GetDouble(string id);

or define new global parameters.

public void AddValue(string id, double value);
public double GetOrSetDouble(string name,double defaultValue,string description);

A bulk of parameters at the same time can be set with the method SetParameterBulk(string xmlDescription). The XML description is the same, as the settings in the project file.

SetParameterBulk("");