using latest version with VS2010...
In the attached picture, how in the heck do I remove the summary caption line where it says "Company Name"?
If it's possibly - which I suspect it is - I'd like to know how to navigate to it via the grid designer and also how to set it in code.
I tried searching the forum first and found this answer/blurb from Mike on a similar question ...
"The good news is, you don't have to. You can just set SummaryFooterCaptionVisible on the band to False."
...but when I try something like this...
ultraGrid1.DisplayLayout.Bands[0].SummaryFooterCaptionVisible =
false
...it does not recogonize the "SummaryFooterCaptionVisible" property.
Thanks,
--mark
Go through the Override object to get to it.
ultraGrid1.DisplayLayout.Bands[0].Override.SummaryFooterCaptionVisible.
Also you can it in general for the grid with ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible
Also, is there a way to modify the width of the yellow rectangle?
Thanks Matthew...that worked.
Now that I have removed that line...I would like to put the Company Name in the blank area (white rectangle) directly to the left you the total area (in yellow). Is that area exposed via a property?
Thanks