how to i choose on which "side" of the split will be the ExclusiveColumn ?
if for example i've done this :
ug.DisplayLayout.MaxColScrollRegions = 2;
ug.DisplayLayout.Bands[0].Columns[0].Header.ExclusiveColScrollRegion = ug.DisplayLayout.ColScrollRegions[0];
ug.DisplayLayout.Bands[1].Columns[0].Header.ExclusiveColScrollRegion = ug.DisplayLayout.ColScrollRegions[0];
ug.DisplayLayout.ColScrollRegions[0].Split();
the Column[0] of both bands is now exclusivly on the Right side of the split but i want it to be on the left side. where do i indicate that?
Furthermore,
How do i hide the Expand/Collapse indicators (+/- signs) from the one of the split sides? for example at the ExclusiveColScrollRegion ?
Hi,
It's hard to be sure, but the code you have here is assigning the ExclusiveColScrollRegion of column 0 in each band to the first ColScrollRegion - so that should be the one on the left. You are saying the column is only showing up on the right? That doesn't make sense.
sharik said:How do i hide the Expand/Collapse indicators (+/- signs) from the one of the split sides? for example at the ExclusiveColScrollRegion ?
There's no property for this. You could use a CreationFilter or a DrawFilter to hide them, but there will always be a space where they would have been.