We have a grid where the bands are set up with AllowColSizing = AllowColSizing.Syncroized but when I perform auto resize on the column it only resizes to fit information contained in the top most band that is associated with that column header. Is there a way to have it include all syncronized bands to that column header?
Hi Derek,
There's no PerformAutoSize method that will do this. But what you could do is use CalculateAutoSize on the column(s) instead. Basically, you would loop through each band and call CalculateAutoSize on each column in the same position and then use the biggest width you got back.
Thanks for the reply Mike. Is there an event I can handle when the user double clicks on the sizing portion of a column to achieve this?