public interface Virtualized
VirtualizedScrollPane.| Type | Property and Description |
|---|---|
org.reactfx.value.Var<Double> |
estimatedScrollX |
org.reactfx.value.Var<Double> |
estimatedScrollY |
org.reactfx.value.Val<Double> |
totalHeightEstimate |
org.reactfx.value.Val<Double> |
totalWidthEstimate |
| Modifier and Type | Method and Description |
|---|---|
org.reactfx.value.Var<Double> |
estimatedScrollXProperty() |
org.reactfx.value.Var<Double> |
estimatedScrollYProperty() |
default double |
getEstimatedScrollX()
Gets the value of the property estimatedScrollX.
|
default double |
getEstimatedScrollY()
Gets the value of the property estimatedScrollY.
|
default double |
getTotalHeightEstimate()
Gets the value of the property totalHeightEstimate.
|
default double |
getTotalWidthEstimate()
Gets the value of the property totalWidthEstimate.
|
default void |
scrollBy(double deltaX,
double deltaY)
Convenience method: scroll horizontally by
deltaX and vertically by deltaY |
default void |
scrollBy(Point2D deltas)
Convenience method: scroll horizontally by
deltas.getX() and vertically by deltas.getY() |
default void |
scrollToPixel(double xPixel,
double yPixel)
Convenicen method: scroll the content to the pixel
|
default void |
scrollToPixel(Point2D pixel)
Convenicen method: scroll the content to the pixel
|
void |
scrollXBy(double deltaX)
Scroll the content horizontally by the given amount.
|
void |
scrollXToPixel(double pixel)
Scroll the content horizontally to the pixel
|
void |
scrollYBy(double deltaY)
Scroll the content vertically by the given amount.
|
void |
scrollYToPixel(double pixel)
Scroll the content vertically to the pixel
|
org.reactfx.value.Val<Double> |
totalHeightEstimateProperty() |
org.reactfx.value.Val<Double> |
totalWidthEstimateProperty() |
org.reactfx.value.Val<Double> totalWidthEstimateProperty
getTotalWidthEstimate()org.reactfx.value.Val<Double> totalHeightEstimateProperty
getTotalHeightEstimate()org.reactfx.value.Var<Double> estimatedScrollXProperty
getEstimatedScrollX()org.reactfx.value.Var<Double> estimatedScrollYProperty
getEstimatedScrollY()org.reactfx.value.Val<Double> totalWidthEstimateProperty()
getTotalWidthEstimate()default double getTotalWidthEstimate()
org.reactfx.value.Val<Double> totalHeightEstimateProperty()
getTotalHeightEstimate()default double getTotalHeightEstimate()
org.reactfx.value.Var<Double> estimatedScrollXProperty()
getEstimatedScrollX()default double getEstimatedScrollX()
org.reactfx.value.Var<Double> estimatedScrollYProperty()
getEstimatedScrollY()default double getEstimatedScrollY()
default void scrollBy(Point2D deltas)
deltas.getX() and vertically by deltas.getY()deltas - negative values scroll left/up, positive scroll right/downdefault void scrollBy(double deltaX,
double deltaY)
deltaX and vertically by deltaYdeltaX - negative values scroll left, positive scroll rightdeltaY - negative values scroll up, positive scroll downvoid scrollXBy(double deltaX)
deltaX - positive value scrolls right, negative value scrolls leftvoid scrollYBy(double deltaY)
deltaY - positive value scrolls down, negative value scrolls updefault void scrollToPixel(Point2D pixel)
default void scrollToPixel(double xPixel,
double yPixel)
void scrollXToPixel(double pixel)
pixel - - the pixel position to which to scrollvoid scrollYToPixel(double pixel)
pixel - - the pixel position to which to scroll