I want to disable the Auto Scrolling of TextArea in javaFx, Because when I add text to TextArea the scroll is moving down, I don't want to Auto Scroll the Scroll bar in TextArea, if I add the text scroll should be selected position.(Example if user is reading middle line if add the text it Automatically going to down, So again user need to move the scroll to middle line). So for that reason I want to disable the Auto Scroll in TextArea in JavaFx.
javafx.application.Platform.runLater( new Runnable() {
@Override
public void run() {
logTextArea.appendText("I am adding text here to TextArea"+"\n");// Adding the text to logTextArea
}
});
Below are the ref links :- please check this link