PDF Viewer - Zoom

How can I get the PDF Viewer to be zoomed in to 250% automatically.

The PDF viewer component has a setZoomFactor method.

target = event.source.parent.getComponent('PDF Viewer')
target.setZoomFactor(2.5)

If you want more complex control, you can drill into the underlying objects; see more info here:

2 Likes