Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
Disable the spilt function of Ultragrid
posted

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

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    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.

Children