Hi all,
I am currently using this ultrawingrid in my program and found some difficulties in using it.
I found that the small bar on the scroll bar (In the red circle) can let the user split the grid into 2 grid.
Is there any method to disable and make it invisible?
Thanks,
Brian
Hello,
In order to disable user to vertical split of UltraGrid, you should set MaxRowScrollRegins to 1.
this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
by default the value of this property is 10.
Please let me know if you have any further questions.
Thanks Hristo! This code is working. Thanks for your help!