Page 1 of 1

Access Properties in StimulReporter

Posted: Mon Mar 30, 2015 2:53 pm
by Alirezam
Hey Guys .
How can I Change Property Of Some Text or Object in Stimul Reporter with my C# application ??
i can access and modify their values in my Application but i dont found any way to change property....
Tnx for helping..........

Re: Access Properties in StimulReporter

Posted: Tue Mar 31, 2015 5:50 am
by Alex K.
Hello,

Please try to use the following code:

Code: Select all

StiText textComp = report.GetComponentByName()["Text1"] as StiText;
textComp.CanGrow = false;
textComp.Height = 10;
...
Thank you.