本文整理了Java中javax.swing.JTextArea.getVisibleRect()
方法的一些代码示例,展示了JTextArea.getVisibleRect()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextArea.getVisibleRect()
方法的具体详情如下:
包路径:javax.swing.JTextArea
类名称:JTextArea
方法名:getVisibleRect
暂无
代码示例来源:origin: bobbylight/RSyntaxTextArea
Rectangle visible = textArea.getVisibleRect();
代码示例来源:origin: net.sf.squirrel-sql.plugins/firebirdmanager
/**
* Refresh the textarea and scroll to the end
*/
private void refreshDisplay() {
this.textArea.setCaretPosition(this.textArea.getDocument().getLength());
this.textArea.scrollRectToVisible(this.textArea.getVisibleRect());
this.scrollPane.getVerticalScrollBar().setValue(this.scrollPane.getVerticalScrollBar().getMaximum());
this.textArea.paintImmediately(0,0,this.textArea.getWidth(), this.textArea.getHeight());
}
代码示例来源:origin: com.fifesoft/rsyntaxtextarea
Rectangle visible = textArea.getVisibleRect();
内容来源于网络,如有侵权,请联系作者删除!