I'm having a TextFlow
inside a StackPane
which is inside a ScrollPane
. I'm adding text with different colors to this TextFlow
Text txt = new Text(msg);
txt.setFill(Paint.valueOf(color));
txtFlow.getChildren().add(txt);
I want to scroll to a some specific point in the textflow.
e.g. First text that is in blue color.
I know I can get the text and check the color. But how can I scroll down to that specific position?
Can I achieve that sort of functionality through the TextFlow
?
Simply I'm trying to build up a diff view in JavaFX
. And want to travel through the diffs.