When you've defined a Row Layout with Label position = Left (see attached file) it seems that:
ov.AllowColSizing = Infragistics.Win.UltraWinGrid.AllowColSizing.Free;
Is not working? 'Cause I can't size the Labels independantly from eachother...
The labels are not a column - they are inside the column. In other words, the column contains both the label and the cell. So this is the intended behavior.
No i mean, I can't resize the label "voorschrift" independantly from label "GPK" (see screenshot). Or is this simply not possible?
Well... you could change the column.RowLayoutColumnInfo.LabelSpan on one of the column and this would make the label span a different number of logical rows than the other one. But one would always be bigger than the other. You can't size these label's completely independently on a per-pixel basis, if that's what you are trying to do.
Hhmm... That's not going to look pretty.
Can I for instance make the label "Voorschrift" invisible (make it disppear somehow doesn't matter how), and only display the cell, but keep the labels "GPK" and "Dosering" + cells?
Yes, you could set the column.RowLayoutColumnInfo.LabelPosition to None.
Yeah great. That works just fine. Thanks!