M. Na.
M. Na.

Reputation: 11

How can I align the text in JTextArea in java gui swing

How can I align the text in the textarea in java swing , is there a property for this and how ?...

Upvotes: 0

Views: 686

Answers (1)

brld
brld

Reputation: 188

This should work out:

JTextArea jTextArea = new JTextArea();
jTextArea.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); 

(credit to Braj for this answer).

Also, this should give you more information: How to set the orientation of JTextArea from right to left (inside JOptionPane)

Upvotes: 2

Related Questions