Posted 31 January 2020, 11:21 am EST
Hello,
I set GroupByAreaVisible = True but it is not displayed in my Grid control. How do I fix this problem?
Thanks,
Victor
Forums Home / ComponentOne / WinForms Edition
Posted by: Victor.m.charles.civ on 31 January 2020, 11:21 am EST
Posted 31 January 2020, 11:21 am EST
Hello,
I set GroupByAreaVisible = True but it is not displayed in my Grid control. How do I fix this problem?
Thanks,
Victor
Posted 3 February 2020, 5:30 am EST
Hi Victor,
To use GroupByAreaVisible property please make sure that DataView poperty of TrueDBGrid is set to GroupBy.
c1TrueDBGrid1.DataView = C1.Win.C1TrueDBGrid.DataViewEnum.GroupBy;
c1TrueDBGrid1.GroupByAreaVisible = true;
Regards,
Prabhat Sharma
Posted 3 February 2020, 10:47 am EST
Thank You.