Get Variables from Report
Posted: Thu Jul 24, 2008 6:59 am
Is it possible to get in a c# file a list of variables which are defined in a report?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
foreach (Stimulsoft.Report.Dictionary.StiVariable variable in report.Dictionary.Variables)
{
if (!variable.IsCategory)
{ .... }
}