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.
i am not going to use ScrollRegiions but i thought to answer you, i also thought to my self, why would it go on the right side and not the left, but here is a screenshot. forgive my masking of data i know its silly.
the first col of the DataSet starts with "W" (on both DataTables) and that is the column which i made Exclusive (on both bands), and as you can see it is on the right side.
the RightToLeft property of the grid is set to NO (as by default) and the Anchor property is set to Top,Left (as by default) didn't touch these 2 properties. if you will like i will attach the project