Package 

Interface ScrollHandle

    • Method Summary

      Modifier and Type Method Description
      abstract Unit setupLayout(PDFView pdfView) Set the current scroll handler
      abstract Unit destroyLayout() Destroy the scroll handler
      abstract Unit setPageNum(Integer pageNum, Integer totalPages) Set the current page number
      abstract Unit setScroll(Float position) Set the scroll handler to the given position
      abstract Unit hide() Hide the scroll handler
      abstract Unit show() Show the scroll handler
      abstract Unit hideDelayed() Hide the scroll handler after a delay
      abstract Boolean shown()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • setupLayout

         abstract Unit setupLayout(PDFView pdfView)

        Set the current scroll handler

        Parameters:
        pdfView - PDFView instance
      • setPageNum

         abstract Unit setPageNum(Integer pageNum, Integer totalPages)

        Set the current page number

        Parameters:
        pageNum - The current page number (1-indexed)
        totalPages - The total number of pages
      • setScroll

         abstract Unit setScroll(Float position)

        Set the scroll handler to the given position

        Parameters:
        position - Position relative to the PDFView
      • hide

         abstract Unit hide()

        Hide the scroll handler

      • show

         abstract Unit show()

        Show the scroll handler

      • hideDelayed

         abstract Unit hideDelayed()

        Hide the scroll handler after a delay