?? 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -