Hi,
Not sure if it is possible or not! - Here is my question...
I'm using winfowm wingrid -- As part of one of my requirement - I need to display a big text in summary row. so i implemented "ICustomSummaryCalculator" to return big string onto summary row - so far everything working fine but the issue is - since my column width is small entire big text in not fitting/display into it, Trying to figure out the way to wrap/merge big text across multiple columns and auto increase the row if more text comes in!
Maybe one possible approach could be if you set the property Lines. For example:
ultraGrid1.DisplayLayout.Bands[0].Summaries[0].Lines = 5;
Also you could try to extend the size of "SummaryValueUIElement" using CreationFIlter.
Please let me know if you have any questions.
Regards
Thanks for your quick reply...
1. Line =# will not work for me because - i've summary for other columns on same grid.
2. I looked at the couple of example for SummaryValueUIElement" using CreationFIlter - but i'm not sure how to implement, since I already have 2 summary rows on my grid.
Is there any way through which I can merge Cell/Column - like how we do in excel?
Here is the sample
Hello vbalingula,
I made small sample for you where I`m using approach with CreationFilter. Please take a look at the attached sample and video file for more details and let me know if you have any questions.