pdfGetScrollY

Get the y coordinate of the current scroll position.
int pdfGetScrollY(PDFViewerHandle viewer)
This function returns the y coordinate of the current scroll position.
C:
/* this is equivalent to pdfScrollBy(viewer, dx, dy) */ pdfScrollTo(viewer, pdfGetScrollX(viewer) + dx, pdfGetScrollY(viewer) + dy);
pdfGetScrollX
pdfScrollTo
pdfScrollBy