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.
Stimulsoft for dummies
Stimulsoft for dummies
Stimulsoft for dummies
Hello,
To create and add a variable you can use this code:
To change the value of a variable you can use this code:
Thank you.
To create and add a variable you can use this code:
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";