Interface Virtualized

    • Method Detail

      • totalWidthEstimateProperty

        org.reactfx.value.Val<java.lang.Double> totalWidthEstimateProperty()
      • getTotalWidthEstimate

        default double getTotalWidthEstimate()
      • totalHeightEstimateProperty

        org.reactfx.value.Val<java.lang.Double> totalHeightEstimateProperty()
      • getTotalHeightEstimate

        default double getTotalHeightEstimate()
      • estimatedScrollXProperty

        org.reactfx.value.Var<java.lang.Double> estimatedScrollXProperty()
      • getEstimatedScrollX

        default double getEstimatedScrollX()
      • estimatedScrollYProperty

        org.reactfx.value.Var<java.lang.Double> estimatedScrollYProperty()
      • getEstimatedScrollY

        default double getEstimatedScrollY()
      • scrollBy

        default void scrollBy​(javafx.geometry.Point2D deltas)
        Convenience method: scroll horizontally by deltas.getX() and vertically by deltas.getY()
        Parameters:
        deltas - negative values scroll left/up, positive scroll right/down
      • scrollBy

        default void scrollBy​(double deltaX,
                              double deltaY)
        Convenience method: scroll horizontally by deltaX and vertically by deltaY
        Parameters:
        deltaX - negative values scroll left, positive scroll right
        deltaY - negative values scroll up, positive scroll down
      • scrollXBy

        void scrollXBy​(double deltaX)
        Scroll the content horizontally by the given amount.
        Parameters:
        deltaX - positive value scrolls right, negative value scrolls left
      • scrollYBy

        void scrollYBy​(double deltaY)
        Scroll the content vertically by the given amount.
        Parameters:
        deltaY - positive value scrolls down, negative value scrolls up
      • scrollToPixel

        default void scrollToPixel​(javafx.geometry.Point2D pixel)
        Convenicen method: scroll the content to the pixel
      • scrollToPixel

        default void scrollToPixel​(double xPixel,
                                   double yPixel)
        Convenicen method: scroll the content to the pixel
      • scrollXToPixel

        void scrollXToPixel​(double pixel)
        Scroll the content horizontally to the pixel
        Parameters:
        pixel - - the pixel position to which to scroll
      • scrollYToPixel

        void scrollYToPixel​(double pixel)
        Scroll the content vertically to the pixel
        Parameters:
        pixel - - the pixel position to which to scroll