I am currently working on reports which use parameters set by external C# application, but first I need to get these parameters, their types and values. I use the following code
Code: Select all
Console.WriteLine("name " + report.Dictionary.Variables[param.name].Name);
Console.WriteLine("type " + report.Dictionary.Variables[param.name].Type);
Console.WriteLine("obj " + report.Dictionary.Variables[param.name].ValueObject);