Variables with category
Posted: Wed Oct 18, 2006 8:47 am
Create variable and add to report:
variable = new Stimulsoft.Report.Dictionary.StiVariable("MyCategory", "MyVariable", typeof(string));
report.Dictionary.Variables.Add(variable);
It appears in report under Variables | MyCategory | MyVariable, OK
How can I gain access to it afterwards?
Stimulsoft.Report.Dictionary.StiVariable variable = report.Dictionary.Variables["ReportTitle"] is null
Stimulsoft.Report.Dictionary.StiVariable variable = report.Dictionary.Variables["dB35.ReportTitle"] is null
And report.Dictionary.Variables has zero members.
Ian
variable = new Stimulsoft.Report.Dictionary.StiVariable("MyCategory", "MyVariable", typeof(string));
report.Dictionary.Variables.Add(variable);
It appears in report under Variables | MyCategory | MyVariable, OK
How can I gain access to it afterwards?
Stimulsoft.Report.Dictionary.StiVariable variable = report.Dictionary.Variables["ReportTitle"] is null
Stimulsoft.Report.Dictionary.StiVariable variable = report.Dictionary.Variables["dB35.ReportTitle"] is null
And report.Dictionary.Variables has zero members.
Ian