Example usage for Java javafx.scene.control ScrollBar fields, constructors, methods, implement or subclass
The text is from its open source code.
ScrollBar() Creates a new horizontal ScrollBar (ie getOrientation() == Orientation.HORIZONTAL). |
void | adjustValue(double position) Adjusts the #valueProperty() value property by #blockIncrementProperty() blockIncrement . |
void | decrement() Decrements the value of the ScrollBar by the #unitIncrementProperty unitIncrement |
void | increment() Increments the value of the ScrollBar by the #unitIncrementProperty unitIncrement |
DoubleProperty | maxProperty() |
DoubleProperty | minProperty() |
void | setBlockIncrement(double value) |
void | setMax(double value) |
void | setMin(double value) |
void | setOrientation(Orientation value) |
void | setUnitIncrement(double value) |
void | setValue(double value) |
DoubleProperty | valueProperty() |
DoubleProperty | visibleAmountProperty() |
ReadOnlyDoubleProperty | widthProperty() |