Window.SmallScroll Method

Scrolls a window or pane by the specified number of lines.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Sub SmallScroll ( _
    ByRef Down As Object, _
    ByRef Up As Object, _
    ByRef ToRight As Object, _
    ByRef ToLeft As Object _
)
'Usage
Dim instance As Window
Dim Down As Object
Dim Up As Object
Dim ToRight As Object
Dim ToLeft As Object

instance.SmallScroll(Down, Up, ToRight, _
    ToLeft)
void SmallScroll(
    ref Object Down,
    ref Object Up,
    ref Object ToRight,
    ref Object ToLeft
)

Parameters

  • Down
    Type: System.Object%
    Optional Object. The number of lines to scroll the window down. A "line" corresponds to the distance scrolled by clicking the down scroll arrow on the vertical scroll bar once.
  • Up
    Type: System.Object%
    Optional Object. The number of lines to scroll the window up. A "line" corresponds to the distance scrolled by clicking the up scroll arrow on the vertical scroll bar once.
  • ToRight
    Type: System.Object%
    Optional Object. The number of lines to scroll the window to the right. A "line" corresponds to the distance scrolled by clicking the right scroll arrow on the horizontal scroll bar once.
  • ToLeft
    Type: System.Object%
    Optional Object. The number of lines to scroll the window to the left. A "line" corresponds to the distance scrolled by clicking the left scroll arrow on the horizontal scroll bar once.

Remarks

This method is equivalent to clicking the scroll arrows on the horizontal and vertical scroll bars.

If Down and Up are both specified, the window is scrolled by the difference of the arguments. For example, if Down is 3 and Up is 6, the window is scrolled up three lines. Similarly, if ToLeft and ToRight are both specified, the window is scrolled by the difference of the arguments.

Any of these arguments can be a negative number. If no arguments are specified, the window is scrolled down by one line.

See Also

Reference

Window Interface

Window Members

Microsoft.Office.Interop.Word Namespace