本文整理了Java中javax.swing.JTextArea.setAlignmentY()
方法的一些代码示例,展示了JTextArea.setAlignmentY()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextArea.setAlignmentY()
方法的具体详情如下:
包路径:javax.swing.JTextArea
类名称:JTextArea
方法名:setAlignmentY
暂无
代码示例来源:origin: omegat-org/omegat
hintTextArea.setWrapStyleWord(true);
hintTextArea.setAlignmentX(0.0F);
hintTextArea.setAlignmentY(0.0F);
hintTextArea.setDragEnabled(false);
hintTextArea.setFocusable(false);
代码示例来源:origin: omegat-org/omegat
description.setWrapStyleWord(true);
description.setAlignmentX(0.0F);
description.setAlignmentY(0.0F);
description.setDragEnabled(false);
description.setFocusable(false);
代码示例来源:origin: sarahtattersall/PIPE
/**
* Initialize with an (x,y) location
* @param x coordinate
* @param y coordinate
*/
private void initialize(int x, int y) {
originalX = x;
originalY = y;
noteText.setAlignmentX(Component.CENTER_ALIGNMENT);
noteText.setAlignmentY(Component.CENTER_ALIGNMENT);
noteText.setOpaque(false);
noteText.setEditable(false);
noteText.setEnabled(false);
noteText.setLineWrap(true);
noteText.setWrapStyleWord(true);
// Set minimum size the preferred size for an empty string:
noteText.setText("");
noteText.setFont(
new Font(GUIConstants.ANNOTATION_DEFAULT_FONT, Font.PLAIN, GUIConstants.ANNOTATION_DEFAULT_FONT_SIZE));
noteText.setSize(noteText.getPreferredSize().width, noteText.getPreferredSize().height);
noteText.setMinimumSize(noteText.getPreferredSize());
noteText.setHighlighter(new DefaultHighlighter());
noteText.setDisabledTextColor(GUIConstants.NOTE_DISABLED_COLOUR);
noteText.setForeground(GUIConstants.NOTE_EDITING_COLOUR);
add(noteText);
setLocation(x - GUIConstants.RESERVED_BORDER / 2, y - GUIConstants.RESERVED_BORDER / 2);
}
内容来源于网络,如有侵权,请联系作者删除!