Description Scrolls the page.
Syntax ImageFileObjectPageObject.Pages(pagenumber).Scroll direction Direction,ScrollamountAmount
Remarks The Scroll method uses these parameters:
Parameter | Data Type | Description |
Direction | Integer | Direction in which to scroll the image |
0 — (Default) Scrolls down | ||
1 — Scrolls up | ||
2 — Scrolls right | ||
3 — Scrolls Left | ||
ScrollAmount | Long | Number of pixels to scroll the image |
The amount is the number of pixels to scroll. The direction settings are:
SettingDescription
0Default. Scrolls down.
1Scrolls up.
2Scrolls right.
3Scrolls Left.
Example This example scrolls the page down 200 pixels.
Img.Pages(1).Scroll 0 200
Chapter