ScrollViewer: Scroll on mouse drag

I want to trigger scrolling in scrollViewer when mouse button is hold and cursor is moved around. But I can’t find what I am looking for in the API docs. Has anyone an idea on how it works?

you could probably fake it by calling conrol.onWheelObservable.trigger(new Vector2(xshift, yshift)); ???