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..........
Access Properties in StimulReporter
Re: Access Properties in StimulReporter
Hello,
Please try to use the following code:
Thank you.
Please try to use the following code:
Code: Select all
StiText textComp = report.GetComponentByName()["Text1"] as StiText;
textComp.CanGrow = false;
textComp.Height = 10;
...