Format TextArea JavaFX

2

I'm creating a kind of notepad, and I'm trying to find some way, so that the user can format their letter, size, color, etc. in a JavaFX TextArea. Would anyone know if JavaFX has a specific library for this? so I can insert above the TextArea a bar for text formatting?

If anyone knows, thank you!

    
asked by anonymous 13.11.2015 / 19:45

1 answer

2

You can use RichTextFX . With it you can set various styles for your textArea .

An alternative would be to use HTMLEditor I think you can solve your problem.

Source: link

    
13.11.2015 / 19:58