Reputation: 1
I want to make selected text of jtextarea underline while clicking a spicified button. this task I have accomplish in jtextpane but I need it in jtextarea any suggestions please.
Upvotes: 0
Views: 372
Reputation: 324128
I want to make selected text of jtextarea underline
You can add a Highlighter
to the text area and use a custom Painter
to highlight the text. The default painter paints the entire background of the highlighted text, but you can customize the Painter to do whatever you want.
Check out Rectangle Painter for a couple examples of creating your own custom Painter
.
Upvotes: 0