Stimulsoft for dummies
Posted: Tue Jan 04, 2011 12:37 pm
This is something I'm curious about too.jorool wrote:Hello
How to add and set values to a variable on source code?
Can you show me an example?
Thank you.
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/
This is something I'm curious about too.jorool wrote:Hello
How to add and set values to a variable on source code?
Can you show me an example?
Thank you.
Code: Select all
var variable: StiVariable = new StiVariable("", "Variable1", "Variable1");
report.dictionary.variables.add(variable);
Code: Select all
var variable: StiVariable = report.dictionary.variables.getByName("Variable1");
variable.value = "some value";