Hi !
It is possible to set Keep Group Together for a GroupHeader, by code?
I want to set that optional in my application.
Thanks.
Set ' Keep Group Together' by code
Re: Set ' Keep Group Together' by code
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
StiGroupHeaderBand groupHeaderBand = report.GetComponents()["GroupHeaderBand1"] as StiGroupHeaderBand;
groupHeaderBand.KeepGroupHeaderTogether = true;
Re: Set ' Keep Group Together' by code
It is working,thanks a lot !
Re: Set ' Keep Group Together' by code
Hello,
Great!
Have a nice weekend.
Great!
Have a nice weekend.