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
105
Split box
posted


RowSplitBoxUIElement

ColSplitBoxUIElement

Is there any way to hide or disable the split box that shows on the grid scrollbars?  I can split my grid multiple times but would like to be able to disable that feature.

Thanks

  • 22852
    Verified Answer
    Offline posted

    The feature is scroll regions and you can remove them from the UI by setting the maximum allowed for rows and columns to 1:

    grid.DisplayLayout.MaxColScrollRegions = 1;
    grid.DisplayLayout.MaxRowScrollRegions =1;

    Let me know if you have any questions with this matter.