title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
DocumentWindow.SmallScroll method (PowerPoint) |
vbapp10.chm511018 |
|
|
f6710bca-ad85-9257-061a-dbe5829d8b7b |
06/08/2017 |
medium |
Scrolls through the specified document window by lines and columns.
expression.SmallScroll (Down, Up, ToRight, ToLeft)
expression A variable that represents a DocumentWindow object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Down | Optional | Long | Specifies the number of lines to scroll down. |
Up | Optional | Long | Specifies the number of lines to scroll up. |
ToRight | Optional | Long | Specifies the number of columns to scroll right. |
ToLeft | Optional | Long | Specifies the number of columns to scroll left. |
If no arguments are specified, this method scrolls down one line. If Down and Up are both specified, their effects are combined. For example, if Down is 2 and Up is 4, this method scrolls up two lines. Similarly, if ToRight and ToLeft are both specified, their effects are combined.
Any of the arguments can be a negative number.
This example scrolls down three lines in the active window.
Application.ActiveWindow.SmallScroll Down:=3
[!includeSupport and feedback]