Is there a way to reset all variables in a report to their default value ??
Thanks!
Resestting Variables
Resestting Variables
You can use following code:
Thank you.
Code: Select all
foreach (StiVariable variable in report.Dictionary.Variables)
{
variable.Value = "";
}