Hi
I am working on a desktop application using c#.NET. I am using UltrawinGrid in one of my screens. I want one row UltraGrid to consist of multiple rows. In other words I want there should be multiple rows in one UltrGrid Row i.e more vertical space within UltraGrid Row. Is there any way I can set the height of UlrtaGrid Row. Is there any solution available?
Thnx in advance
Azif
Hi Azif,
There are two ways to do this. One way is to use Groups and Levels. You create groups in the band, assign each column to a group, set the LevelCount on the band, and then you can move colmuns around to different levels.
The other way, which is more flexible, is to use RowLayouts. RowLayouts allows you to have cells that span multiple levels and can be arranged into all sorts of unusual layouts. The down side of RowLayouts is that they are a bit more complicated and also they are incomaptible with certain other features of the grid like fixed headers.