I have a Scrollpane with large-enough content to active the vertical scroll bar.
fx:id of the Scrollpane is myScrollPane.
I also have a button called Scroll To The Bottom.
I have set the Action Event of the Scroll To The Bottom button as below in the fxml controller.
@FXML
private voide myButtonOnAction(ActionEvent evt) {
myScrollPane.setVvalue(1.0);
}
This,however, scrolls to the bottom very fast.It can't be told whether it was scrolled either. I want to know a way to make Scrollpane scrolls SLOWLY.