2

Here i want to scroll the pdf document using vScrollBar in c#.net. i have displayed the pdf document in axAcroPDF.i want scroll down and up using windows form control(vScrollBar). How can i do it please answer anyone.

enter image description here

Chinna
  • 59
  • 1
  • 1
  • 8

1 Answers1

2

You can use the following code:

axAcroPDF1.setViewScroll("FitH", scrollbarValue);

Just replace scrollbarValue with the value of your custom scrollbar

Mister_R
  • 21
  • 3
  • Its working but i can scroll only one page. how can i set or get the value for scrolling full document. – Chinna Aug 26 '15 at 05:35