📄 e987. enabling word-wrapping and line-wrapping in a jtextarea component.txt
字号:
With line-wrapping, breaks are allowed to occur in the middle of words. With word-wrapping, breaks are only allowed between words.
JTextArea c = new JTextArea();
// Enable line-wrapping
c.setLineWrap(true);
c.setWrapStyleWord(false);
// Enable word-wrapping
c.setLineWrap(true);
c.setWrapStyleWord(true);
Related Examples
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -