Get Variables from Report
Get Variables from Report
Is it possible to get in a c# file a list of variables which are defined in a report?
Get Variables from Report
Hello.
Yes, it is possible. Please inspect this list like this:
Thank you.
Yes, it is possible. Please inspect this list like this:
Code: Select all
foreach (Stimulsoft.Report.Dictionary.StiVariable variable in report.Dictionary.Variables)
{
if (!variable.IsCategory)
{ .... }
}
Get Variables from Report
Thank you =)