hi,
wondering if it's possible to resize the columns in an individual band independently of other bands?
i'm trying using the following code...
// resize column width as per its contents foreach(UltraGridBand band in ugdRepoPriceBlotter.DisplayLayout.Bands) { foreach(UltraGridColumn col in ugdRepoPriceBlotter.DisplayLayout.Bands[band.Index].Columns) { col.PerformAutoResize(); } }
thanks,
Niel.
Hi Niel,
To make the columns in each band sizable independently, you need to set AllowColSizing (on the Override) to Free.
excellent, thank you.