vote up 0 vote down star

any method available to place the JTextArea to the right of the JPanel??

flag
You need to be more specific. Maybe if you posted some of your code it would help or a screenshot of your application – willcodejavaforfood Jul 1 at 10:30

3 Answers

vote up 0 vote down

Try adding a spacer component to the JPanel first which will push the text area to the right. The code to create such a component is: Box.createHorizontalGlue();

link|flag
vote up 1 vote down

Do you mean in the right hand side within the JPanel?

If so, you could construct the JPanel with a BorderLayout as its layout manager, then add the JTextArea with

panel.add(textArea, BorderLayout.EAST);

It's possible that BorderLayout isn't what you want though, depending on the right of your controls. There are many options available. I suggest you read a layout tutorial for more details.

If that's not what you mean, please clarify the question.

link|flag
yep!! tats wat i meant.. – Raji Jul 1 at 10:31
vote up 1 vote down

This depends on the LayoutManager that your JPanel uses, not the JTextArea itself. Unless you specify a LayoutManager when creating your JPanel, it will be using FlowLayout.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.