SmallScroll Method Example

This example scrolls the active window down one line.

ActiveDocument.ActiveWindow.SmallScroll Down:=1

This example splits the active window and then scrolls up and over to the left.

With ActiveDocument.ActiveWindow
    .Split = True
    .SmallScroll Up:=5, ToLeft:=5
End With