I know this event fires whenever the scrollbar has moved.
But I only want to perform some action whenever the scrolling action has finished.
i.e whenever the user has performed a mouseup.
Is there another event for this?
Hey thanks a lot, that's exactly what I needed.
It might be helpful to set the ScrollStyle to Deferred:
ultraGrid1.DisplayLayout.ScrollStyle = ScrollStyle.Deferred;
This will prevent the AfterRowRegionScroll event from being fired until the user releases the scrollbar. It does also, I think, prevent the grid from moving while the scrollbar is being dragged, which may be a bad thing for your application.