Access Properties in StimulReporter

Stimulsoft Reports.NET discussion
Post Reply
Alirezam
Posts: 1
Joined: Mon Mar 30, 2015 2:46 pm

Access Properties in StimulReporter

Post 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..........
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: Access Properties in StimulReporter

Post 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.
Post Reply