BeginScrollView Location adjustment

What is the proper syntax for adding variables to adjust the location of a scrolling bar?

Here is what I have so far, which works, but does not allow me to move it around the screen:

scrollPosition = GUILayout.BeginScrollView (scrollPosition, GUILayout.Width (scrollWidth), GUILayout.Height (scrollHeight));

If you're using `GUILayout`, the position of the views is going to be determined automatically.

You want to use `GUI.BeginScrollView`