Reputation: 463
I have a java class for generating PDF using itext api (com.lowagie.text.pdf). In Adobe reader, in 'View' tab, when you select 'Page Display' option, there you have one option 'Enable Scrolling'. If we enable this option, then we can scroll the PDF file using arrow keys continuously otherwise as we scroll using the arrow keys, scroll stops at the end of each page. I need to enable this option while generating PDF file using the java api specified above.
Anyone having any idea about it please let me know.
Upvotes: 0
Views: 1561
Reputation: 9816
There is a limited number of preferences available called the Viewer Preferences (cp pdf spec page 362) Those options specify how conforming readers should behave. However as you can see yourself there is no option regarding scrolling. Thus it seems that setting the option in your reader is the only option...
Upvotes: 1