Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Scrolls a window by the specified number of lines.
Syntax
expression.SmallScroll (Down, Up, ToRight, ToLeft)
expression Required. A variable that represents a 'Pane' object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Down | Optional | Variant | 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 | Optional | Variant | 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 | Optional | Variant | 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 | Optional | Variant | 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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.