Is there any way of auto scroll down a ScrollPane control when it content\'s height increases ? For example, I have a TitledPane on the bottom of the screen (inside a Scroll
You can bind the ScrollPane vvalue property with the heightProperty of the inner container. For example, if you have a VBox in your ScrollPane:
bind
ScrollPane
vvalue
heightProperty
VBox
scrollPane.vvalueProperty().bind(vBox.heightProperty());